aboutsummaryrefslogtreecommitdiff
path: root/config
diff options
context:
space:
mode:
authorRaghuram Subramani <raghus2247@gmail.com>2025-10-29 09:04:17 -0400
committerRaghuram Subramani <raghus2247@gmail.com>2025-10-29 09:04:17 -0400
commit6a87beb9d7ec4344cb8691994db98fce43c8fde5 (patch)
tree73784e97aded0a853b042ff2b8e41b170282178a /config
parente01aa19d98db42d2b3149097a04e844a4cbe4923 (diff)
users: admin should be able to create new users
Diffstat (limited to 'config')
-rw-r--r--config/routes.rb1
1 files changed, 1 insertions, 0 deletions
diff --git a/config/routes.rb b/config/routes.rb
index 59104e5..cf9070e 100644
--- a/config/routes.rb
+++ b/config/routes.rb
@@ -15,4 +15,5 @@ Rails.application.routes.draw do
root "home#index"
resources :clients, only: [ :new, :create ]
+ resources :users, only: [ :new, :create ]
end