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