EvoBal/config/routes.rb

14 lines
298 B
Ruby
Raw Normal View History

require 'sidekiq/web'
2020-10-17 12:16:28 +02:00
Rails.application.routes.draw do
2021-01-06 23:27:50 +01:00
devise_for :users
resources :metadata_mappings
2020-12-28 13:02:56 +01:00
resources :emails
2021-01-06 23:27:50 +01:00
root to: "emails#index"
mount Sidekiq::Web => '/sidekiq'
2021-01-06 23:27:50 +01:00
# For details on the DSL available within this file, see https://guides.rubyonrails.org/routing.html
2020-10-17 12:16:28 +02:00
end