Worlds Bets
Some checks failed
CI / scan_ruby (push) Has been cancelled
CI / scan_js (push) Has been cancelled
CI / lint (push) Has been cancelled
CI / test (push) Has been cancelled

This commit is contained in:
sto
2026-09-06 10:07:47 +02:00
parent 49e49dc93d
commit dae86bd1ea
33 changed files with 1337 additions and 1 deletions

View File

@@ -0,0 +1,29 @@
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