Browse Source

Fix server status URL being a required server setting (#23499)

closed-social-glitch-2
Claire 1 year ago
committed by GitHub
parent
commit
67de888bad
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      app/models/form/admin_settings.rb

+ 1
- 1
app/models/form/admin_settings.rb View File

@ -69,7 +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
validates :status_page_url, url: true, allow_blank: true
validate :validate_site_uploads
KEYS.each do |key|

Loading…
Cancel
Save