You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
499 B
26 lines
499 B
2 years ago
|
# frozen_string_literal: true
|
||
|
|
||
|
class ContentRetentionPolicy
|
||
|
def self.current
|
||
|
new
|
||
|
end
|
||
|
|
||
|
def media_cache_retention_period
|
||
|
retention_period Setting.media_cache_retention_period
|
||
|
end
|
||
|
|
||
|
def content_cache_retention_period
|
||
|
retention_period Setting.content_cache_retention_period
|
||
|
end
|
||
|
|
||
|
def backups_retention_period
|
||
|
retention_period Setting.backups_retention_period
|
||
|
end
|
||
|
|
||
|
private
|
||
|
|
||
|
def retention_period(value)
|
||
|
value.days if value.is_a?(Integer) && value.positive?
|
||
|
end
|
||
|
end
|