Total Complexity | 0 |
Complexity/F | 0 |
Lines of Code | 44 |
Function Count | 0 |
Duplicated Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | 'use strict' |
||
2 | |||
3 | module.exports = { |
||
4 | confirmations: { |
||
5 | confirm: { |
||
6 | title: 'Restify Devise | Account Confirmed', |
||
7 | paragraph: 'Your account has been successfully confirmed...', |
||
8 | footer: { |
||
9 | paragraph1: 'You can now sign in to your Restify Devise account to use the application.', |
||
10 | paragraph2: ' Thanks for your patience' |
||
11 | } |
||
12 | } |
||
13 | }, |
||
14 | passwords: { |
||
15 | edit: { |
||
16 | title: 'Restify Devise | Change Password', |
||
17 | header: 'Change Password', |
||
18 | paragraph: 'Enter a password to update your account.', |
||
19 | action: 'Change my password', |
||
20 | fields: { |
||
21 | password: 'Password', |
||
22 | password_confirmation: 'Password confirmation' |
||
23 | } |
||
24 | }, |
||
25 | update: { |
||
26 | title: 'Restify Devise | Changed Password', |
||
27 | paragraph: 'Password changed successfully...', |
||
28 | footer: { |
||
29 | paragraph1: 'Now you can log in to your account with updated password.', |
||
30 | paragraph2: ' Thank you for your patience.' |
||
31 | } |
||
32 | } |
||
33 | }, |
||
34 | unlocks: { |
||
35 | confirm: { |
||
36 | title: 'Restify Devise | Unlocked Account', |
||
37 | paragraph: 'Your account has been successfully unblocked....', |
||
38 | footer: { |
||
39 | paragraph1: 'You can now re-login to your Restify Devise account.', |
||
40 | paragraph2: ' Thanks for your patience' |
||
41 | } |
||
42 | } |
||
43 | } |
||
44 | } |
||
45 |