Sha256: e42f1602d5e0aeaa77fe195de8da19fcdf86d9d868d79cd3bb98e75ab899e112
Contents?: true
Size: 600 Bytes
Versions: 5
Compression:
Stored size: 600 Bytes
Contents
PhcdevworksAccounts::Engine.routes.draw do # User Dashboard match "user", to: "user/pages#dashboard", via: "get" match "user/profile", to: "user/pages#profile", via: "get" # Admin Routes match "/admin", to: "admin/pages#dashboard", via: "get" match "/admin/users/all", to: "admin/pages#users_list", via: "get" match "/admin/user/:id", to: "admin/pages#user_profile", via: "get" # User Routes devise_for :users, class_name: "PhcdevworksAccounts::User", module: :devise, controllers: { registrations: 'users/registrations' } end
Version data entries
5 entries across 5 versions & 1 rubygems