Files
danbooru/app/logical/user_upgrade.rb
evazion 963f1f7991 Add Danbooru Winter Sale.
* 25% off Gold and Platinum accounts.
* Free 6 tag searches for Member-level users.
* Runs from midnight Dec. 25th to 28th (UTC time).
2019-12-24 15:39:29 -06:00

26 lines
343 B
Ruby

class UserUpgrade
def self.gold_price
if Danbooru.config.is_promotion?
1500
else
2000
end
end
def self.platinum_price
if Danbooru.config.is_promotion?
3000
else
4000
end
end
def self.upgrade_price
if Danbooru.config.is_promotion?
1500
else
2000
end
end
end