mirror of
https://github.com/Growstuff/growstuff.git
synced 2025-12-24 01:57:46 -05:00
10 lines
172 B
Ruby
10 lines
172 B
Ruby
# frozen_string_literal: true
|
|
|
|
namespace :gardens do
|
|
desc "Mark old gardens inactive"
|
|
task archive: :environment do
|
|
Planting.archive!
|
|
Garden.archive!
|
|
end
|
|
end
|