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