mirror of
https://github.com/LaCasemate/fab-manager.git
synced 2024-11-29 10:24:20 +01:00
23 lines
337 B
Ruby
23 lines
337 B
Ruby
class AuthProviderPolicy < ApplicationPolicy
|
|
|
|
class Scope < Scope
|
|
def resolve
|
|
scope.includes(:providable)
|
|
end
|
|
end
|
|
|
|
%w(index? show? create? update? destroy? mapping_fields?).each do |action|
|
|
define_method action do
|
|
user.admin?
|
|
end
|
|
end
|
|
|
|
def active?
|
|
user
|
|
end
|
|
|
|
def send_code?
|
|
user
|
|
end
|
|
end
|