1
0
mirror of https://github.com/mastodon/mastodon synced 2024-11-24 23:26:22 +09:00
mastodon/app/lib/application_extension.rb
2021-04-15 16:28:43 +02:00

12 lines
294 B
Ruby

# frozen_string_literal: true
module ApplicationExtension
extend ActiveSupport::Concern
included do
validates :name, length: { maximum: 60 }
validates :website, url: true, length: { maximum: 2_000 }, if: :website?
validates :redirect_uri, length: { maximum: 2_000 }
end
end