Skip to content

Commit

Permalink
Created editable Devise controllers
Browse files Browse the repository at this point in the history
  • Loading branch information
Prelang Builder authored and u49362 committed Feb 13, 2015
1 parent 661652d commit 320b015
Show file tree
Hide file tree
Showing 3 changed files with 33 additions and 0 deletions.
7 changes: 7 additions & 0 deletions app/controllers/users/passwords_controller.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
class Users::PasswordsController < Devise::PasswordsController
include ApplicationHelper

def new
super
end
end
15 changes: 15 additions & 0 deletions app/controllers/users/registrations_controller.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
class Users::RegistrationsController < Devise::RegistrationsController
include ApplicationHelper

def create
super
end

def new
super
end

def edit
super
end
end
11 changes: 11 additions & 0 deletions app/controllers/users/sessions_controller.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
class Users::SessionsController < Devise::SessionsController
include ApplicationHelper

def create
super
end

def new
super
end
end

0 comments on commit 320b015

Please sign in to comment.