Chatwoot/app/policies/macro_policy.rb
Tejaswini Chile a274a1702a
chore: Macros enhancement (#5609)
- Fixed send_attachment and send_email_transcript
- Fixed duplicate activity messages
- Fixed Order of execution

Fixes: #5584
2022-10-20 19:41:48 -07:00

29 lines
255 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
def attach_file?
true
end
end