25 lines
220 B
Ruby
25 lines
220 B
Ruby
class MacroPolicy < ApplicationPolicy
|
|
def index?
|
|
true
|
|
end
|
|
|
|
def create?
|
|
true
|
|
end
|
|
|
|
def show?
|
|
true
|
|
end
|
|
|
|
def update?
|
|
true
|
|
end
|
|
|
|
def destroy?
|
|
true
|
|
end
|
|
|
|
def execute?
|
|
true
|
|
end
|
|
end
|