lol_auth 0.1.6 → 0.1.7
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/app/controllers/lol_auth/passwords_controller.rb +2 -0
- data/lib/lol_auth/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 8332e3ac248b1a5c167c29a9dfaa8e7a02b8697c
|
4
|
+
data.tar.gz: e42b55f8f7de700363205a8510ddbc286cdb1dad
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a03c81009283416ef4e3aceac63c03bfaf21ac1f1d5232614e254892cb14f1a18b947347e2617d7aea657fd284d10e89b71f39aae226e565b08632535fdd8c29
|
7
|
+
data.tar.gz: 1667639cbcbb03b9363d4401b102070e4118c6ffe634e7b8cb14320c3fe41cbeeff883cbe9485f78241e1202339301417598129f170790d48b3457051163b954
|
@@ -4,6 +4,8 @@ module LolAuth
|
|
4
4
|
class PasswordsController < ApplicationController
|
5
5
|
include Rails.application.routes.url_helpers
|
6
6
|
|
7
|
+
skip_before_action :authenticate_api_v1_user!, only: [:new, :create, :complete_password]
|
8
|
+
|
7
9
|
before_action :load_user, except: [:complete_password]
|
8
10
|
|
9
11
|
def new
|
data/lib/lol_auth/version.rb
CHANGED