mastodon/app/policies/backup_policy.rb
2025-06-23 07:40:11 +00:00

10 lines
197 B
Ruby

# frozen_string_literal: true
class BackupPolicy < ApplicationPolicy
MIN_AGE = 6.days
def create?
user_signed_in? && current_user.backups.where(created_at: MIN_AGE.ago..).none?
end
end