Files
finreport-analyzer/config/routes.rb
T
2026-03-10 23:44:59 +03:00

15 lines
371 B
Ruby

# require 'sidekiq/web'
Rails.application.routes.draw do
get 'auditors/index'
get 'reports/create'
get '/reports', to: 'reports#index'
post '/reports', to: 'reports#create'
# mount Sidekiq::Web => '/sidekiq' # Для проверки работы Sidekiq через веб-интерфейс
# Defines the root path route ("/")
root "welcome#index"
end