Add setting for status page URL (#23390)
This commit is contained in:
parent
01584f03e8
commit
8f590b0a21
8 changed files with 25 additions and 5 deletions
|
@ -32,6 +32,7 @@ class Form::AdminSettings
|
|||
media_cache_retention_period
|
||||
content_cache_retention_period
|
||||
backups_retention_period
|
||||
status_page_url
|
||||
).freeze
|
||||
|
||||
INTEGER_KEYS = %i(
|
||||
|
@ -68,6 +69,7 @@ class Form::AdminSettings
|
|||
validates :show_domain_blocks_rationale, inclusion: { in: %w(disabled users all) }, if: -> { defined?(@show_domain_blocks_rationale) }
|
||||
validates :media_cache_retention_period, :content_cache_retention_period, :backups_retention_period, numericality: { only_integer: true }, allow_blank: true, if: -> { defined?(@media_cache_retention_period) || defined?(@content_cache_retention_period) || defined?(@backups_retention_period) }
|
||||
validates :site_short_description, length: { maximum: 200 }, if: -> { defined?(@site_short_description) }
|
||||
validates :status_page_url, url: true
|
||||
validate :validate_site_uploads
|
||||
|
||||
KEYS.each do |key|
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue