EvoBal/config/routes.rb

9 lines
249 B
Ruby
Raw Normal View History

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