Sha256: 966fb73b1d61a304e5507f1994d2bc0eaba2f1b927a6e848e9044b27bc9ac7e2
Contents?: true
Size: 948 Bytes
Versions: 8
Compression:
Stored size: 948 Bytes
Contents
class SessionsController < ApplicationController skip_before_action :authenticate, only: :create before_action :set_session, only: %i[ show destroy ] def index render json: Current.<%= singular_table_name %>.sessions.order(created_at: :desc) end def show render json: @session end def create <%= singular_table_name %> = <%= class_name %>.find_by(email: params[:email]) if <%= singular_table_name %> && <%= singular_table_name %>.authenticate(params[:password]) @session = <%= singular_table_name %>.sessions.create! response.set_header("X-Session-Token", @session.signed_id) render json: @session, status: :created else render json: { error: "That email or password is incorrect" }, status: :unauthorized end end def destroy @session.destroy end private def set_session @session = Current.<%= singular_table_name %>.sessions.find(params[:id]) end end
Version data entries
8 entries across 8 versions & 1 rubygems