Use /signup instead of /an_excellent_meme_reference, and don't use hardcoded paths when redirecting
This commit is contained in:
parent
a38655bd33
commit
5d87ca0904
2 changed files with 5 additions and 5 deletions
|
|
@ -8,7 +8,7 @@ class RegistrationsController < Devise::RegistrationsController
|
||||||
end
|
end
|
||||||
|
|
||||||
def create
|
def create
|
||||||
begin
|
begin
|
||||||
user = User.instantiate!(params[:user])
|
user = User.instantiate!(params[:user])
|
||||||
rescue MongoMapper::DocumentNotValid => e
|
rescue MongoMapper::DocumentNotValid => e
|
||||||
user = nil
|
user = nil
|
||||||
|
|
@ -20,7 +20,7 @@ class RegistrationsController < Devise::RegistrationsController
|
||||||
#redirect_to root_url
|
#redirect_to root_url
|
||||||
sign_in_and_redirect(:user, user)
|
sign_in_and_redirect(:user, user)
|
||||||
else
|
else
|
||||||
redirect_to "/get_to_the_choppa"
|
redirect_to new_user_registration_path
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -29,15 +29,15 @@ Diaspora::Application.routes.draw do
|
||||||
devise_for :users, :controllers => {:registrations => "registrations"}
|
devise_for :users, :controllers => {:registrations => "registrations"}
|
||||||
match 'login', :to => 'devise/sessions#new', :as => "new_user_session"
|
match 'login', :to => 'devise/sessions#new', :as => "new_user_session"
|
||||||
match 'logout', :to => 'devise/sessions#destroy', :as => "destroy_user_session"
|
match 'logout', :to => 'devise/sessions#destroy', :as => "destroy_user_session"
|
||||||
match 'get_to_the_choppa', :to => 'registrations#new', :as => "new_user_registration"
|
match 'signup', :to => 'registrations#new', :as => "new_user_registration"
|
||||||
|
|
||||||
#public routes
|
#public routes
|
||||||
#
|
#
|
||||||
match 'webfinger', :to => 'publics#webfinger'
|
match 'webfinger', :to => 'publics#webfinger'
|
||||||
match 'hcard/users/:id', :to => 'publics#hcard'
|
match 'hcard/users/:id', :to => 'publics#hcard'
|
||||||
|
|
||||||
match '.well-known/host-meta',:to => 'publics#host_meta'
|
match '.well-known/host-meta',:to => 'publics#host_meta'
|
||||||
match 'receive/users/:id', :to => 'publics#receive'
|
match 'receive/users/:id', :to => 'publics#receive'
|
||||||
match 'log', :to => "dev_utilities#log"
|
match 'log', :to => "dev_utilities#log"
|
||||||
|
|
||||||
#root
|
#root
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue