user_mgmt 0.8.2 → 0.8.3
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
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 1d023eddf9f1bcc170ae495045ebf0cdba19bed1
|
|
4
|
+
data.tar.gz: 88a5e920d5e3321e77df4570784ebdc18a854f85
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a8d5e5b2060cd6c25dda70fe52437d32a3e36dc8961b506d5ee1afa557efbc2b655f5cefd2e2e501d4b8e25a110262ceaaa8bdfda0f3c7d5d8faaded157c9ba6
|
|
7
|
+
data.tar.gz: 169ae68948df6c80f56adcbcaa5616f6ae651cbf048c2a930bf835c8cfd29e43885ca9a24a3f42edb76229589317e822f1426ddf1c027469676f211d978d3fba
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
.container.center
|
|
2
|
+
.oauth_buttons
|
|
3
|
+
%ul.unstyled
|
|
4
|
+
%li
|
|
5
|
+
= link_to image_tag('user_mgmt/normal/facebook.png', class: "menu_icon"), "auth/facebook"
|
|
6
|
+
= link_to image_tag('user_mgmt/normal/twitter.png', class: "menu_icon"), "auth/twitter"
|
|
7
|
+
= link_to image_tag('user_mgmt/normal/windows.png', class: "menu_icon"), "auth/windowslive"
|
|
8
|
+
%li
|
|
9
|
+
= link_to image_tag('user_mgmt/normal/linkedin.png', class: "menu_icon"), "auth/linkedin"
|
|
10
|
+
= link_to image_tag('user_mgmt/normal/yahoo-copied.jpg', class: "menu_icon", height: '45', width: '45'), "auth/yahoo"
|
|
11
|
+
= link_to image_tag('user_mgmt/normal/gmail-copied.png', class: "menu_icon", height: '45', width: '45'), "auth/google_oauth2"
|
|
12
|
+
.password_reset
|
|
13
|
+
= link_to 'forgot your password?', password_reset_request_path
|
|
@@ -24,8 +24,4 @@
|
|
|
24
24
|
= link_to image_tag('user_mgmt/normal/yahoo-copied.jpg', class: "menu_icon", height: '45', width: '45'), "auth/yahoo"
|
|
25
25
|
= link_to image_tag('user_mgmt/normal/gmail-copied.png', class: "menu_icon", height: '45', width: '45'), "auth/google_oauth2"
|
|
26
26
|
.password_reset
|
|
27
|
-
= link_to 'forgot your password?', password_reset_request_path
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
27
|
+
= link_to 'forgot your password?', password_reset_request_path
|
data/config/routes.rb
CHANGED
|
@@ -12,6 +12,7 @@ UserMgmt::Engine.routes.draw do
|
|
|
12
12
|
post '/send_password_reset' => 'registrations#send_password_reset', as: 'send_password_reset'
|
|
13
13
|
get '/password_reset_request' => 'registrations#password_reset_request', as: 'password_reset_request'
|
|
14
14
|
post '/send_reset_request' => 'registrations#send_reset_request', as: 'send_reset_request'
|
|
15
|
+
get '/add_strategy' => 'registrations#add_strategy', as: 'add_strategy'
|
|
15
16
|
|
|
16
17
|
get 'auth/:provider/callback' => 'sessions#oauth_email', as: 'oauth_email'
|
|
17
18
|
get 'auth/failure' => 'application#main_page', as: 'cancel'
|
data/lib/user_mgmt/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: user_mgmt
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.8.
|
|
4
|
+
version: 0.8.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Danilo Faria, Fernando Gorodscy, Josh Leslie
|
|
@@ -360,6 +360,7 @@ files:
|
|
|
360
360
|
- app/helpers/user_mgmt/registrations_helper.rb
|
|
361
361
|
- app/models/user_mgmt/user.rb
|
|
362
362
|
- app/views/user_mgmt/registrations/_user_form.html.haml
|
|
363
|
+
- app/views/user_mgmt/registrations/add_strategy.html.haml
|
|
363
364
|
- app/views/user_mgmt/registrations/edit.html.haml
|
|
364
365
|
- app/views/user_mgmt/registrations/new.html.haml
|
|
365
366
|
- app/views/user_mgmt/registrations/password_reset.html.haml
|