rails_jwt_auth 0.3.0 → 0.3.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +4 -0
- data/config/locales/en.yml +2 -0
- data/lib/rails_jwt_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: d60421a50c1dab0343fadc2ada1393a41bf795fb
|
|
4
|
+
data.tar.gz: 3a1d76f6c709d2d870ddf8e0b32d67e255457206
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 6d260b269363d5e04a4857425bdfb45603e3da8d1c706b99dc39494c5a1156f68fb00796eaeabf09db0c4054cbca1d419011788b16683431ab40014b67d0c539
|
|
7
|
+
data.tar.gz: 97b24203b7ae6c1153da28bcfcef026d0078511271783fea3e2cfdc27839ff2740a8e03835c9b2a9ba06328481a9df9983ca082986d8cac7999b7bb22183edd9
|
data/README.md
CHANGED
|
@@ -373,6 +373,10 @@ And then in controller examples we can just call sign_in(user) to sign in as a u
|
|
|
373
373
|
end
|
|
374
374
|
```
|
|
375
375
|
|
|
376
|
+
## Locales
|
|
377
|
+
|
|
378
|
+
Copy `config/locales/en.yml` into your project `config/locales` folder and edit it.
|
|
379
|
+
|
|
376
380
|
## License
|
|
377
381
|
|
|
378
382
|
The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
|
data/config/locales/en.yml
CHANGED
|
@@ -3,6 +3,8 @@ en:
|
|
|
3
3
|
mailer:
|
|
4
4
|
confirmation_instructions:
|
|
5
5
|
subject: "Confirmation instructions"
|
|
6
|
+
reset_password_instructions.subject:
|
|
7
|
+
subject: "Reset password instructions"
|
|
6
8
|
errors:
|
|
7
9
|
already_confirmed: "was already confirmed, please try signing in"
|
|
8
10
|
expired: "has expired, please request a new one"
|