1
0
mirror of https://github.com/mastodon/mastodon synced 2024-12-03 17:28:19 +09:00

Always validate inbox_url presence on Relay (#32364)

This commit is contained in:
Matt Jankowski 2024-12-02 02:38:06 -05:00 committed by GitHub
parent 3cd308523a
commit a17e7d10fc
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -13,7 +13,7 @@
#
class Relay < ApplicationRecord
validates :inbox_url, presence: true, uniqueness: true, url: true, if: :will_save_change_to_inbox_url?
validates :inbox_url, presence: true, uniqueness: true, url: true # rubocop:disable Rails/UniqueValidationWithoutIndex
enum :state, { idle: 0, pending: 1, accepted: 2, rejected: 3 }