OpenFest: Set correct layout for Devise controllers

This commit is contained in:
Petko Bordjukov 2015-07-19 18:32:29 +03:00 committed by Andrew Radev
parent f08259cba8
commit ab2cb8ca73
5 changed files with 5 additions and 35 deletions

View File

@ -1,9 +1,3 @@
class OpenFest::Users::ConfirmationsController < Devise::ConfirmationsController
# def new
# super
# end
# def create
# super
# end
layout 'open_fest/application'
end

View File

@ -1,9 +1,3 @@
class OpenFest::Users::PasswordsController < Devise::PasswordsController
# def new
# super
# end
# def create
# super
# end
layout 'open_fest/application'
end

View File

@ -1,9 +1,3 @@
class OpenFest::Users::RegistrationsController < Devise::RegistrationsController
# def new
# super
# end
# def create
# super
# end
layout 'open_fest/application'
end

View File

@ -1,9 +1,3 @@
class OpenFest::Users::SessionsController < Devise::SessionsController
# def new
# super
# end
# def create
# super
# end
layout 'open_fest/application'
end

View File

@ -1,9 +1,3 @@
class OpenFest::Users::UnlocksController < Devise::UnlocksController
# def new
# super
# end
# def create
# super
# end
layout 'open_fest/application'
end