tuist/projects/cloud/app/policies/command_event_policy.rb

12 lines
221 B
Ruby

# frozen_string_literal: true
class CommandEventPolicy < ApplicationPolicy
def show?
ProjectPolicy.new(user, record.project).show?
end
def update?
ProjectPolicy.new(user, record.project).update?
end
end