30 lines
246 B
Ruby
30 lines
246 B
Ruby
class WorldBetPolicy < ApplicationPolicy
|
|
def main?
|
|
true
|
|
end
|
|
|
|
def about?
|
|
true
|
|
end
|
|
|
|
def new?
|
|
true
|
|
end
|
|
|
|
def create?
|
|
true
|
|
end
|
|
|
|
def collab?
|
|
true
|
|
end
|
|
|
|
def update?
|
|
true
|
|
end
|
|
|
|
def view?
|
|
true
|
|
end
|
|
end
|