2016-03-23 18:39:41 +01:00
|
|
|
class InvoicePolicy < ApplicationPolicy
|
|
|
|
def index?
|
|
|
|
user.is_admin?
|
|
|
|
end
|
|
|
|
|
|
|
|
def download?
|
|
|
|
user.is_admin? or (record.user_id == user.id)
|
|
|
|
end
|
|
|
|
|
|
|
|
def create?
|
|
|
|
user.is_admin?
|
|
|
|
end
|
2016-05-31 10:02:27 +02:00
|
|
|
|
|
|
|
def list?
|
|
|
|
user.is_admin?
|
|
|
|
end
|
2016-03-23 18:39:41 +01:00
|
|
|
end
|