Class: UserSessionsController

Inherits:
ApplicationController show all
Defined in:
app/controllers/user_sessions_controller.rb

Overview

Copyright 2011-2013 innoQ Deutschland GmbH

Licensed under the Apache License, Version 2.0 (the “License”); you may not use this file except in compliance with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an “AS IS” BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

Instance Method Summary collapse

Instance Method Details

#createObject



25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
# File 'app/controllers/user_sessions_controller.rb', line 25

def create
  authorize! :create, UserSession

  @user_session = UserSession.new(user_session_params.to_h)
  request.session_options[:skip] = false

  if @user_session.save
    @current_ability = nil
    flash[:success] = I18n.t('txt.controllers.user_sessions.login_success')
    if params[:back_to].present?
      redirect_to URI.parse(params[:back_to]).path
    else
      redirect_to can?(:use, :dashboard) ? dashboard_path : root_path
    end
  else
    flash[:error] = I18n.t('txt.views.user_sessions.error')
    render action: :new
  end
end

#destroyObject



45
46
47
48
49
50
51
# File 'app/controllers/user_sessions_controller.rb', line 45

def destroy
  authorize! :destroy, UserSession

  current_user_session.destroy
  flash[:success] = I18n.t('txt.controllers.user_sessions.logout_success')
  redirect_to new_user_session_path
end

#newObject



18
19
20
21
22
23
# File 'app/controllers/user_sessions_controller.rb', line 18

def new
  authorize! :create, UserSession

  @user_session = UserSession.new
  request.session_options[:skip] = false
end