Files

36 lines
467 B
Ruby

class MacroPolicy < ApplicationPolicy
def index?
true
end
def create?
true
end
def show?
@record.global? || author?
end
def update?
return @account_user.administrator? if @record.global?
author?
end
def destroy?
return @account_user.administrator? if @record.global?
author?
end
def execute?
@record.global? || author?
end
private
def author?
@record.created_by == @account_user.user
end
end