2017-01-16 00:01:33 +11:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module ApplicationExtension
|
|
|
|
extend ActiveSupport::Concern
|
|
|
|
|
|
|
|
included do
|
2021-04-16 00:28:43 +10:00
|
|
|
validates :name, length: { maximum: 60 }
|
|
|
|
validates :website, url: true, length: { maximum: 2_000 }, if: :website?
|
|
|
|
validates :redirect_uri, length: { maximum: 2_000 }
|
2017-01-16 00:01:33 +11:00
|
|
|
end
|
2022-03-02 02:48:58 +11:00
|
|
|
|
2022-05-27 06:03:54 +10:00
|
|
|
def confirmation_redirect_uri
|
|
|
|
redirect_uri.lines.first.strip
|
|
|
|
end
|
2017-01-16 00:01:33 +11:00
|
|
|
end
|