mirror of
https://github.com/LaCasemate/fab-manager.git
synced 2024-11-28 09:24:24 +01:00
26 lines
469 B
Ruby
26 lines
469 B
Ruby
# frozen_string_literal: true
|
|
|
|
# Check the access policies for API::AuthProvidersController
|
|
class AuthProviderPolicy < ApplicationPolicy
|
|
|
|
class Scope < Scope
|
|
def resolve
|
|
scope.includes(:providable, :auth_provider_mappings)
|
|
end
|
|
end
|
|
|
|
%w[index? show? create? update? destroy? mapping_fields? strategy_name?].each do |action|
|
|
define_method action do
|
|
user.admin?
|
|
end
|
|
end
|
|
|
|
def active?
|
|
user
|
|
end
|
|
|
|
def send_code?
|
|
user
|
|
end
|
|
end
|