Sha256: f00fd42121bf1d2eaec54ef3d24871137e902c9d4e9da53f2b76628a0d11f71c
Contents?: true
Size: 1 KB
Versions: 12
Compression:
Stored size: 1 KB
Contents
require "mtwarden/constraints/subdomain_required" Mtwarden::Engine.routes.draw do constraints(Mtwarden::Constraints::SubdomainRequired) do scope :module => "account" do root :to => "dashboard#index", :as => :account_root get "/sign_in", :to => "sessions#new", :as => :sign_in post "/sign_in", :to => "sessions#create", :as => :sessions get "/sign_up", :to => "users#new", :as => :user_sign_up post "/sign_up", :to => "users#create", :as => :do_user_sign_up get "/account", :to => "accounts#edit", :as => :edit_account patch "/account", :to => "accounts#update" get "/account/plan/:plan_id", :to => "accounts#plan", :as => :plan_account get "/account/subscribe", :to => "accounts#subscribe", :as => :subscribe_account post "/account/confirm_plan", :to => "accounts#confirm_plan", :as => :confirm_plan_account end end root "dashboard#index" get "/sign_up", :to => "accounts#new", :as => :sign_up post "/accounts", :to => "accounts#create", :as => :accounts end
Version data entries
12 entries across 12 versions & 1 rubygems