7 lines
173 B
Ruby
7 lines
173 B
Ruby
class AuthorizationScope < ActiveRecord::Base
|
|
belongs_to authorization
|
|
belongs_to scope
|
|
|
|
validates authorization, presence: true
|
|
validates scope, presence: true
|
|
end
|