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: cc74692b23a7b267de9ec1ef8a42d93a4632fd34
4
- data.tar.gz: cc48871ed72f28a7bdc24a91857ba1fe1ef452b0
3
+ metadata.gz: 1d023eddf9f1bcc170ae495045ebf0cdba19bed1
4
+ data.tar.gz: 88a5e920d5e3321e77df4570784ebdc18a854f85
5
5
  SHA512:
6
- metadata.gz: 4f50b3e0b9e2ee95576cbb247d2c59b9303a5d0ce266e67613e406e4e45d2ea4fbb2b2355cf9d88abcd4e8f16805f30ea2e0b6880bcade5607340eb4c81c75eb
7
- data.tar.gz: f125f8043aa228842a3506ee5a9b7c63a0e52b045df4f0e1581381f361c418883551dd33df3703b565360be18753728178b6f9f83d44715e6794d97e3d0adfef
6
+ metadata.gz: a8d5e5b2060cd6c25dda70fe52437d32a3e36dc8961b506d5ee1afa557efbc2b655f5cefd2e2e501d4b8e25a110262ceaaa8bdfda0f3c7d5d8faaded157c9ba6
7
+ data.tar.gz: 169ae68948df6c80f56adcbcaa5616f6ae651cbf048c2a930bf835c8cfd29e43885ca9a24a3f42edb76229589317e822f1426ddf1c027469676f211d978d3fba
@@ -29,6 +29,9 @@ module UserMgmt
29
29
 
30
30
  end
31
31
 
32
+ def add_strategy
33
+ end
34
+
32
35
  def password_reset
33
36
  end
34
37
 
@@ -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'
@@ -1,3 +1,3 @@
1
1
  module UserMgmt
2
- VERSION = "0.8.2"
2
+ VERSION = "0.8.3"
3
3
  end
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.2
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