Files
old-konsultanti-next-gen/config/routes.rb

10 lines
296 B
Ruby
Raw Normal View History

2021-09-20 08:22:39 +02:00
Rails.application.routes.draw do
mount RailsAdmin::Engine => '/admin', as: 'rails_admin'
2021-09-22 16:40:20 +02:00
resources :employers do
resource :like
resource :retweet
end
root to: 'hello#index'
2021-09-20 08:22:39 +02:00
# For details on the DSL available within this file, see https://guides.rubyonrails.org/routing.html
end