mirror of
https://github.com/LaCasemate/fab-manager.git
synced 2024-12-10 21:24:20 +01:00
13 lines
303 B
Ruby
13 lines
303 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
# Check the access policies for API::PaymentSchedulesController
|
||
|
class PaymentSchedulePolicy < ApplicationPolicy
|
||
|
def list?
|
||
|
user.admin? || user.manager?
|
||
|
end
|
||
|
|
||
|
def download?
|
||
|
user.admin? || user.manager? || (record.invoicing_profile.user_id == user.id)
|
||
|
end
|
||
|
end
|