Sha256: 12784e4663a60788d233392ce6a522c6fab2e85a37754314e0998f3cf0c25ab8

Contents?: true

Size: 647 Bytes

Versions: 10

Compression:

Stored size: 647 Bytes

Contents

MnoEnterprise::Engine.routes.draw do

  #============================================================
  # Static Pages
  #============================================================
  root to: redirect { MnoEnterprise::Engine.routes.url_helpers.myspace_path }

  # MySpace routes
  get '/myspace', to: 'pages#myspace'
  get '/myspace#/apps/dashboard', to: 'pages#myspace', as: 'myspace_home'
  get '/myspace#/billing', to: 'pages#myspace', as: 'myspace_billing'

  # Invoices
  resources :invoices, only: [:show], constraints: { id: /[\w\-]+/ }

  # User Setup process
  # ==> Currently NOT prod ready
  resources :user_setup, only: [:index]
end

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
mno-enterprise-frontend-2.0.9 config/routes.rb
mno-enterprise-frontend-2.0.8 config/routes.rb
mno-enterprise-frontend-2.0.7 config/routes.rb
mno-enterprise-frontend-2.0.6 config/routes.rb
mno-enterprise-frontend-2.0.5 config/routes.rb
mno-enterprise-frontend-2.0.4 config/routes.rb
mno-enterprise-frontend-2.0.3 config/routes.rb
mno-enterprise-frontend-2.0.2 config/routes.rb
mno-enterprise-frontend-2.0.1 config/routes.rb
mno-enterprise-frontend-2.0.0 config/routes.rb