feat: Macros CRUD api (#5047)

This commit is contained in:
Tejaswini Chile
2022-07-19 17:37:00 +05:30
committed by GitHub
parent c4b2005425
commit 0cee42a9f9
17 changed files with 460 additions and 2 deletions

View File

@@ -0,0 +1,21 @@
class MacroPolicy < ApplicationPolicy
def index?
true
end
def create?
true
end
def show?
true
end
def update?
true
end
def destroy?
true
end
end