15 lines
327 B
Ruby
15 lines
327 B
Ruby
# frozen_string_literal: true
|
|
|
|
Rails.application.routes.draw do
|
|
get "dashboard/home"
|
|
get "dashboard/other"
|
|
get "dashboard/placement"
|
|
get "dashboard/missing"
|
|
|
|
namespace :foobar do
|
|
get "dashboard/home"
|
|
end
|
|
|
|
# For details on the DSL available within this file, see http://guides.rubyonrails.org/routing.html
|
|
end
|