2017-01-15 13:01:33 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module ApplicationExtension
|
|
|
|
extend ActiveSupport::Concern
|
|
|
|
|
|
|
|
included do
|
2021-04-15 14:28:43 +00: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-15 13:01:33 +00:00
|
|
|
end
|
2022-03-01 15:48:58 +00:00
|
|
|
|
2022-05-26 20:03:54 +00:00
|
|
|
def confirmation_redirect_uri
|
|
|
|
redirect_uri.lines.first.strip
|
|
|
|
end
|
2017-01-15 13:01:33 +00:00
|
|
|
end
|