mirror of
https://github.com/LaCasemate/fab-manager.git
synced 2024-12-13 23:48:55 +01:00
31 lines
512 B
Ruby
31 lines
512 B
Ruby
# frozen_string_literal: true
|
|
|
|
# Check the access policies for API::TrainingsController
|
|
class TrainingPolicy < ApplicationPolicy
|
|
class Scope < Scope
|
|
def resolve
|
|
scope.includes(:plans, :machines)
|
|
end
|
|
end
|
|
|
|
def show?
|
|
!record.disabled? || user.admin? || user.manager?
|
|
end
|
|
|
|
def create?
|
|
user.admin?
|
|
end
|
|
|
|
def update?
|
|
user.admin? || user.manager?
|
|
end
|
|
|
|
def destroy?
|
|
user.admin? && record.destroyable?
|
|
end
|
|
|
|
def availabilities?
|
|
user.admin? || user.manager?
|
|
end
|
|
end
|