Skip to content

Instantly share code, notes, and snippets.

@liroyleshed
Forked from dhh/gist:2492118
Created July 4, 2020 13:19
Show Gist options
  • Save liroyleshed/0c2b277b195fd5864ab1a1229e0d610a to your computer and use it in GitHub Desktop.
Save liroyleshed/0c2b277b195fd5864ab1a1229e0d610a to your computer and use it in GitHub Desktop.
class ActionDispatch::Routing::Mapper
def draw(routes_name)
instance_eval(File.read(Rails.root.join("config/routes/#{routes_name}.rb")))
end
end
BCX::Application.routes.draw do
draw :api
draw :account
draw :session
draw :people_and_groups
draw :projects
draw :calendars
draw :legacy_slugs
draw :ensembles_and_buckets
draw :globals
draw :monitoring
draw :mail_attachments
draw :message_preview
draw :misc
root to: 'projects#index'
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment