Sha256: e508ad84b540611763444f49d6892bd3154597bf1d858ccac6b2d85dc20151de
Contents?: true
Size: 872 Bytes
Versions: 5
Compression:
Stored size: 872 Bytes
Contents
# frozen_string_literal: true class UsersController < ApplicationController prepend_before_action :current_user, only: :exhibit before_action :authenticate_user!, except: [:accept, :exhibit] respond_to :html, :xml def index user_session[:cart] = "Cart" respond_with(current_user) end def edit_form user_session['last_request_at'] = params.fetch(:last_request_at, 31.minutes.ago.utc) end def update_form render (Devise::Test.rails5? ? :body : :text) => 'Update' end def accept @current_user = current_user end def exhibit render (Devise::Test.rails5? ? :body : :text) => current_user ? "User is authenticated" : "User is not authenticated" end def expire user_session['last_request_at'] = 31.minutes.ago.utc render (Devise::Test.rails5? ? :body : :text) => 'User will be expired on next request' end end
Version data entries
5 entries across 5 versions & 1 rubygems