Add users controller
Some checks are pending
CI / scan_ruby (push) Waiting to run
CI / scan_js (push) Waiting to run
CI / lint (push) Waiting to run
CI / test (push) Waiting to run

This commit is contained in:
sto
2025-03-14 16:37:21 +01:00
parent 50280ce389
commit 026bda2a99
14 changed files with 110 additions and 6 deletions

View File

@@ -1,7 +1,4 @@
Rails.application.routes.draw do
get "contests/create"
resource :session
resources :passwords, param: :token
# Define your application routes per the DSL in https://guides.rubyonrails.org/routing.html
# Reveal health status on /up that returns 200 if the app boots with no exceptions, otherwise 500.
@@ -12,5 +9,8 @@ Rails.application.routes.draw do
root "contests#index"
resources :contests
resources :passwords, param: :token
resources :puzzles
resource :session
resources :users
end