2017-01-15 22:01:33 +09:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module ApplicationExtension
|
|
|
|
extend ActiveSupport::Concern
|
|
|
|
|
|
|
|
included do
|
2023-07-21 20:13:16 +09:00
|
|
|
has_many :created_users, class_name: 'User', foreign_key: 'created_by_application_id', inverse_of: :created_by_application
|
|
|
|
|
2021-04-15 23:28:43 +09: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 22:01:33 +09:00
|
|
|
end
|
2022-03-02 00:48:58 +09:00
|
|
|
|
2022-05-27 05:03:54 +09:00
|
|
|
def confirmation_redirect_uri
|
|
|
|
redirect_uri.lines.first.strip
|
|
|
|
end
|
2017-01-15 22:01:33 +09:00
|
|
|
end
|