Sha256: 8fcebc5a9a656d5b0611b9a5ec6083e14838fe4338b5f81eb8ab0d9842790d8b
Contents?: true
Size: 694 Bytes
Versions: 2
Compression:
Stored size: 694 Bytes
Contents
# frozen_string_literal: true module MiniBlog module Users class SessionsController < Devise::SessionsController layout 'mini_blog/application' # before_action :configure_sign_in_params, only: [:create] # GET /resource/sign_in # def new # super # end # POST /resource/sign_in # def create # super # end # DELETE /resource/sign_out # def destroy # super # end # protected # If you have extra params to permit, append them to the sanitizer. # def configure_sign_in_params # devise_parameter_sanitizer.permit(:sign_in, keys: [:attribute]) # end end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
mini_blog-0.1.1 | app/controllers/mini_blog/users/sessions_controller.rb |
mini_blog-0.1.0 | app/controllers/mini_blog/users/sessions_controller.rb |