about summary refs log tree commit diff
path: root/app/controllers/auth/sessions_controller.rb
diff options
context:
space:
mode:
authorEugen Rochko <eugen@zeonfederated.com>2016-03-26 01:14:37 +0100
committerEugen Rochko <eugen@zeonfederated.com>2016-03-26 01:14:37 +0100
commit43bb8a25e702badd4a98934e0e28e65190a1b7cb (patch)
tree425957c4170390250d05210688a83a1dee05cbbe /app/controllers/auth/sessions_controller.rb
parentf2da848a3ebf8f7a2407d3f33cded8d8b3f298c3 (diff)
Remember user logins by default
Diffstat (limited to 'app/controllers/auth/sessions_controller.rb')
-rw-r--r--app/controllers/auth/sessions_controller.rb27
1 files changed, 4 insertions, 23 deletions
diff --git a/app/controllers/auth/sessions_controller.rb b/app/controllers/auth/sessions_controller.rb
index d1bcc7c17..f02ce00c1 100644
--- a/app/controllers/auth/sessions_controller.rb
+++ b/app/controllers/auth/sessions_controller.rb
@@ -1,27 +1,8 @@
 class Auth::SessionsController < Devise::SessionsController
   layout 'auth'
 
-  # before_filter :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.for(:sign_in) << :attribute
-  # end
+  def create
+    params[:user].merge!(remember_me: 1)
+    super
+  end
 end