Sha256: b801f008afcb46196312f59825ff1ea38a34e34fe2562ac58082bd3d83d8eb45
Contents?: true
Size: 708 Bytes
Versions: 8
Compression:
Stored size: 708 Bytes
Contents
Rails.application.routes.draw do |map| namespace :inkling do resources :paths, :themes match 'update_tree' => 'paths#update_tree', :as => :update_tree match 'proxy_new' => 'proxying#new', :as => :proxy_new namespace :admin do resources :users, :roles, :permissions match 'content_types' => 'content_types#index', :as => :content_types end end match 'home', :to => 'inkling/home#dashboard', :as => "inkling_user_root" namespace :inkling do devise_for "users", :controllers => { :sessions => "inkling/users/sessions", :passwords => "inkling/users/passwords", :confirmations => "inkling/users/confirmations"}, :class_name => "Inkling::User" end end
Version data entries
8 entries across 8 versions & 1 rubygems