This commit is contained in:
2026-04-06 22:13:54 +00:00
commit a0d0b9b7d7
116 changed files with 2572 additions and 0 deletions

16
config/routes.rb Normal file
View File

@@ -0,0 +1,16 @@
Rails.application.routes.draw do
# For details on the DSL available within this file, see http://guides.rubyonrails.org/routing.html
root :to => "static#index"
get 'admin', to: "static#index"
get 'asociados', to: "static#index"
get 'solicitudes', to: "static#index"
get 'admin/asociados', to: "static#index"
get 'admin/solicitudes', to: "static#index"
get 'categoria', to: "categoria#index"
get 'status', to: "status#index"
get 'contacto_de_preferencia', to: "contacto_de_preferencia#index"
post 'api/notification', to: "notification#create"
resources :asociado, :solicitud
end