tramway-auth 1.0 → 1.0.1
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a5984e1c2e4e4d09c13f9c0089882b1c9b482d44ef64677428f778a5d1a10a07
|
4
|
+
data.tar.gz: a55bc79ce4b036f279af3d000fa584c0ad7b899714ba983b945cc6bb4958049d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c19b6bb9e9620856a11624ce25bd48ebc42de1e6cf6013bcd1c5da5168200d2cb63337b8804fed1c770d47151595a02eae9d60cc9eb483fa89c2b3e4f5dbfc59
|
7
|
+
data.tar.gz: 56aa7895c55b24c05e6d9118185b5e505f9189ebdcef0dfdf104d7cb8653a35ec5a4dd1e5651083858c55af6c4c8da802d9d4318eb0233d4f1751c79b0884798
|
@@ -8,7 +8,18 @@ module Tramway::Auth
|
|
8
8
|
end
|
9
9
|
|
10
10
|
def validate(params)
|
11
|
-
|
11
|
+
begin
|
12
|
+
add_wrong_email_or_password_error unless self.model.authenticate params[:password]
|
13
|
+
rescue
|
14
|
+
add_wrong_email_or_password_error
|
15
|
+
false
|
16
|
+
end
|
17
|
+
end
|
18
|
+
|
19
|
+
private
|
20
|
+
|
21
|
+
def add_wrong_email_or_password_error
|
22
|
+
errors.add(:email, I18n.t('errors.wrong_email_or_password'))
|
12
23
|
end
|
13
24
|
end
|
14
25
|
end
|
data/config/locales/ru.yml
CHANGED
data/lib/tramway/auth/version.rb
CHANGED
data/lib/tramway/auth.rb
CHANGED
@@ -3,6 +3,19 @@ require "tramway/auth/engine"
|
|
3
3
|
module Tramway
|
4
4
|
module Auth
|
5
5
|
class << self
|
6
|
+
def authenticable_classes
|
7
|
+
@authenticable_classes ||= []
|
8
|
+
end
|
9
|
+
|
10
|
+
def authenticable_classes=(value)
|
11
|
+
@authenticable_classes ||= []
|
12
|
+
if value.is_a? Array
|
13
|
+
@authenticable_classes += value
|
14
|
+
else
|
15
|
+
@authenticable_classes << value
|
16
|
+
end
|
17
|
+
end
|
18
|
+
|
6
19
|
def root
|
7
20
|
File.dirname __dir__
|
8
21
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tramway-auth
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version:
|
4
|
+
version: 1.0.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Pavel Kalashnikov
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2019-05-
|
11
|
+
date: 2019-05-29 00:00:00.000000000 Z
|
12
12
|
dependencies: []
|
13
13
|
description: Rails engine for auth
|
14
14
|
email:
|