about summary refs log tree commit diff
path: root/app/models/concerns/application.rb
blob: 613be34eeb6c01f2f732d8d3f5422de34810ef3f (plain) (blame)
1
2
3
4
5
6
7
8
module ApplicationExtension
  extend ActiveSupport::Concern
  included do
    validates :website
  end
end

Doorkeeper::Application.send :include, ApplicationExtension