mirror of
https://github.com/LaCasemate/fab-manager.git
synced 2025-03-03 00:29:17 +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
|