Change min age of backup policy from 1 week to 6 days (#27200)

This commit is contained in:
David Aaron 2023-10-03 02:48:57 -07:00 committed by Claire
parent 45669ac5e6
commit f8154cf732
1 changed files with 1 additions and 1 deletions

View File

@ -1,7 +1,7 @@
# frozen_string_literal: true
class BackupPolicy < ApplicationPolicy
MIN_AGE = 1.week
MIN_AGE = 6.days
def create?
user_signed_in? && current_user.backups.where('created_at >= ?', MIN_AGE.ago).count.zero?