0
0
Fork 0

Add setting for status page URL (#23390)

This commit is contained in:
Eugen Rochko 2023-02-04 04:56:06 +01:00 committed by GitHub
parent 01584f03e8
commit 8f590b0a21
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
8 changed files with 25 additions and 5 deletions

View file

@ -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|