Files
codeocean/app/policies/event_policy.rb
2021-05-14 22:03:06 +02:00

8 lines
104 B
Ruby

# frozen_string_literal: true
class EventPolicy < AdminOnlyPolicy
def create?
everyone
end
end