phcdevworks_accounts 2.3.0 → 2.4.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/app/controllers/phcdevworks_accounts/admin/pages_controller.rb +2 -2
- data/app/views/layouts/phcdevworks_accounts/application.html.erb +12 -17
- data/app/views/layouts/phcdevworks_accounts/application_full_width.html.erb +12 -17
- data/app/views/layouts/phcdevworks_accounts/application_no_sidebar.html.erb +12 -17
- data/app/views/layouts/phcdevworks_accounts/application_profile.html.erb +65 -0
- data/app/views/layouts/phcdevworks_accounts/components/backend/sidebars/_side_menu.html.erb +1 -1
- data/app/views/layouts/phcdevworks_accounts/devise.html.erb +12 -17
- data/app/views/phcdevworks_accounts/admin/pages/components/_profile_header.html.erb +27 -0
- data/app/views/phcdevworks_accounts/admin/pages/user_profile.html.erb +22 -0
- data/app/views/phcdevworks_accounts/admin/pages/users_list.html.erb +3 -3
- data/app/views/phcdevworks_accounts/user/pages/dashboard.html.erb +0 -0
- data/app/views/users/confirmations/new.html.erb +1 -1
- data/app/views/users/passwords/edit.html.erb +1 -1
- data/app/views/users/registrations/edit.html.erb +1 -1
- data/app/views/users/unlocks/new.html.erb +1 -1
- data/config/routes.rb +2 -5
- data/lib/phcdevworks_accounts/engine.rb +3 -0
- data/lib/phcdevworks_accounts/version.rb +1 -1
- metadata +36 -25
- data/app/views/phcdevworks_accounts/admin/pages/user_id.html.erb +0 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 69c3f6fc45363975ce0ca7a1079d54cadd77d459dfd07f1e6a39445ddb0bf1d2
|
4
|
+
data.tar.gz: 5710d7ae20f011c5ede7d2f5de15413c580bb6920692839b06210cfbd5c81db5
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: '0906276c4f161774b28b7c258f0fa69fcd317d45adf52fd1611c3f438c0929e789a7a1cb1c296ac61ea290a60bc8aa52158c557c4ba6c1c29a1907d5bf0bd47f'
|
7
|
+
data.tar.gz: b556b41b0208121cdba54f22fb029cef7bbe28b6d87e4d9d4b198c19f585a49615608ce9ee68aceb57a26b0f6b3f7a42762052720fa1069a02dd296236e456b6
|
@@ -6,7 +6,7 @@ module PhcdevworksAccounts
|
|
6
6
|
# Filters
|
7
7
|
include PhcdevworksCore::PhcdevworksPluginsHelper
|
8
8
|
before_action :phcdevworks_accounts_admin_only
|
9
|
-
|
9
|
+
layout "phcdevworks_accounts/application_profile", :only => [ :user_profile ]
|
10
10
|
|
11
11
|
# Account Admin
|
12
12
|
def dashboard
|
@@ -17,7 +17,7 @@ module PhcdevworksAccounts
|
|
17
17
|
@admin_users = User.all
|
18
18
|
end
|
19
19
|
|
20
|
-
def
|
20
|
+
def user_profile
|
21
21
|
@admin_user = User.find_by_id(params[:id])
|
22
22
|
end
|
23
23
|
|
@@ -6,27 +6,26 @@
|
|
6
6
|
<% phc_seo_title "PHCDevworks Accounts" %>
|
7
7
|
<% phc_seo_description "Ruby on Rails 6 Authentication and User Management Engine." %>
|
8
8
|
<!-- SEO System -->
|
9
|
-
|
9
|
+
|
10
10
|
<!-- SEO and Site Description -->
|
11
|
-
|
12
|
-
|
13
|
-
<meta name="
|
14
|
-
|
15
|
-
<link rel="canonical" href="http://phcdevworks.com">
|
11
|
+
<meta charset="utf-8">
|
12
|
+
<title><%= yield(:phc_seo_title) %></title>
|
13
|
+
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
|
14
|
+
<meta name="description" content="<%= yield(:phc_seo_description) %>">
|
16
15
|
<!-- SEO and Site Description -->
|
17
|
-
|
16
|
+
|
18
17
|
<!-- Rails Security Tags -->
|
19
18
|
<%= csrf_meta_tags %>
|
20
19
|
<%= csp_meta_tag %>
|
21
20
|
<!-- Rails Security Tags -->
|
22
|
-
|
21
|
+
|
23
22
|
<!-- CSS Styles -->
|
24
|
-
<%= stylesheet_link_tag "
|
23
|
+
<%= stylesheet_link_tag "phcthemes_admin_panel_pack_coloradmin", media: "all" %>
|
25
24
|
<!-- CSS Styles -->
|
26
|
-
|
27
|
-
<!--
|
28
|
-
|
29
|
-
<!--
|
25
|
+
|
26
|
+
<!-- JavaScript -->
|
27
|
+
<%= javascript_include_tag "phcthemes_admin_panel_pack_coloradmin" %>
|
28
|
+
<!-- JavaScript -->
|
30
29
|
|
31
30
|
</head>
|
32
31
|
<body>
|
@@ -63,9 +62,5 @@
|
|
63
62
|
</div>
|
64
63
|
<!-- Page Container -->
|
65
64
|
|
66
|
-
<!-- JavaScript -->
|
67
|
-
<%= javascript_include_tag "phcdevworks_accounts/application", "data-turbolinks-track": "reload" %>
|
68
|
-
<!-- JavaScript -->
|
69
|
-
|
70
65
|
</body>
|
71
66
|
</html>
|
@@ -6,27 +6,26 @@
|
|
6
6
|
<% phc_seo_title "PHCDevworks Accounts" %>
|
7
7
|
<% phc_seo_description "Ruby on Rails 6 Authentication and User Management Engine." %>
|
8
8
|
<!-- SEO System -->
|
9
|
-
|
9
|
+
|
10
10
|
<!-- SEO and Site Description -->
|
11
|
-
|
12
|
-
|
13
|
-
<meta name="
|
14
|
-
|
15
|
-
<link rel="canonical" href="http://phcdevworks.com">
|
11
|
+
<meta charset="utf-8">
|
12
|
+
<title><%= yield(:phc_seo_title) %></title>
|
13
|
+
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
|
14
|
+
<meta name="description" content="<%= yield(:phc_seo_description) %>">
|
16
15
|
<!-- SEO and Site Description -->
|
17
|
-
|
16
|
+
|
18
17
|
<!-- Rails Security Tags -->
|
19
18
|
<%= csrf_meta_tags %>
|
20
19
|
<%= csp_meta_tag %>
|
21
20
|
<!-- Rails Security Tags -->
|
22
|
-
|
21
|
+
|
23
22
|
<!-- CSS Styles -->
|
24
|
-
<%= stylesheet_link_tag "
|
23
|
+
<%= stylesheet_link_tag "phcthemes_admin_panel_pack_coloradmin", media: "all" %>
|
25
24
|
<!-- CSS Styles -->
|
26
|
-
|
27
|
-
<!--
|
28
|
-
|
29
|
-
<!--
|
25
|
+
|
26
|
+
<!-- JavaScript -->
|
27
|
+
<%= javascript_include_tag "phcthemes_admin_panel_pack_coloradmin" %>
|
28
|
+
<!-- JavaScript -->
|
30
29
|
|
31
30
|
</head>
|
32
31
|
<body>
|
@@ -63,9 +62,5 @@
|
|
63
62
|
</div>
|
64
63
|
<!-- Page Container -->
|
65
64
|
|
66
|
-
<!-- JavaScript -->
|
67
|
-
<%= javascript_include_tag "phcdevworks_accounts/application", "data-turbolinks-track": "reload" %>
|
68
|
-
<!-- JavaScript -->
|
69
|
-
|
70
65
|
</body>
|
71
66
|
</html>
|
@@ -6,27 +6,26 @@
|
|
6
6
|
<% phc_seo_title "PHCDevworks Accounts" %>
|
7
7
|
<% phc_seo_description "Ruby on Rails 6 Authentication and User Management Engine." %>
|
8
8
|
<!-- SEO System -->
|
9
|
-
|
9
|
+
|
10
10
|
<!-- SEO and Site Description -->
|
11
|
-
|
12
|
-
|
13
|
-
<meta name="
|
14
|
-
|
15
|
-
<link rel="canonical" href="http://phcdevworks.com">
|
11
|
+
<meta charset="utf-8">
|
12
|
+
<title><%= yield(:phc_seo_title) %></title>
|
13
|
+
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
|
14
|
+
<meta name="description" content="<%= yield(:phc_seo_description) %>">
|
16
15
|
<!-- SEO and Site Description -->
|
17
|
-
|
16
|
+
|
18
17
|
<!-- Rails Security Tags -->
|
19
18
|
<%= csrf_meta_tags %>
|
20
19
|
<%= csp_meta_tag %>
|
21
20
|
<!-- Rails Security Tags -->
|
22
|
-
|
21
|
+
|
23
22
|
<!-- CSS Styles -->
|
24
|
-
<%= stylesheet_link_tag "
|
23
|
+
<%= stylesheet_link_tag "phcthemes_admin_panel_pack_coloradmin", media: "all" %>
|
25
24
|
<!-- CSS Styles -->
|
26
|
-
|
27
|
-
<!--
|
28
|
-
|
29
|
-
<!--
|
25
|
+
|
26
|
+
<!-- JavaScript -->
|
27
|
+
<%= javascript_include_tag "phcthemes_admin_panel_pack_coloradmin" %>
|
28
|
+
<!-- JavaScript -->
|
30
29
|
|
31
30
|
</head>
|
32
31
|
<body>
|
@@ -56,9 +55,5 @@
|
|
56
55
|
</div>
|
57
56
|
<!-- Page Container -->
|
58
57
|
|
59
|
-
<!-- JavaScript -->
|
60
|
-
<%= javascript_include_tag "phcdevworks_accounts/application", "data-turbolinks-track": "reload" %>
|
61
|
-
<!-- JavaScript -->
|
62
|
-
|
63
58
|
</body>
|
64
59
|
</html>
|
@@ -0,0 +1,65 @@
|
|
1
|
+
<!DOCTYPE html>
|
2
|
+
<html>
|
3
|
+
<head>
|
4
|
+
|
5
|
+
<!-- SEO System -->
|
6
|
+
<% phc_seo_title "PHCDevworks Accounts" %>
|
7
|
+
<% phc_seo_description "Ruby on Rails 6 Authentication and User Management Engine." %>
|
8
|
+
<!-- SEO System -->
|
9
|
+
|
10
|
+
<!-- SEO and Site Description -->
|
11
|
+
<meta charset="utf-8">
|
12
|
+
<title><%= yield(:phc_seo_title) %></title>
|
13
|
+
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
|
14
|
+
<meta name="description" content="<%= yield(:phc_seo_description) %>">
|
15
|
+
<!-- SEO and Site Description -->
|
16
|
+
|
17
|
+
<!-- Rails Security Tags -->
|
18
|
+
<%= csrf_meta_tags %>
|
19
|
+
<%= csp_meta_tag %>
|
20
|
+
<!-- Rails Security Tags -->
|
21
|
+
|
22
|
+
<!-- CSS Styles -->
|
23
|
+
<%= stylesheet_link_tag "phcthemes_admin_panel_pack_coloradmin", media: "all" %>
|
24
|
+
<!-- CSS Styles -->
|
25
|
+
|
26
|
+
<!-- JavaScript -->
|
27
|
+
<%= javascript_include_tag "phcthemes_admin_panel_pack_coloradmin" %>
|
28
|
+
<!-- JavaScript -->
|
29
|
+
|
30
|
+
</head>
|
31
|
+
<body>
|
32
|
+
|
33
|
+
<!-- Page Container -->
|
34
|
+
<div id="page-container" class="fade page-sidebar-fixed page-header-fixed">
|
35
|
+
|
36
|
+
<!-- Page Header -->
|
37
|
+
<div id="header" class="header navbar-default">
|
38
|
+
<%= render "layouts/phcdevworks_accounts/components/backend/navigation/top_menu" %>
|
39
|
+
</div>
|
40
|
+
<!-- Page Header -->
|
41
|
+
|
42
|
+
<!-- Page Sidebar -->
|
43
|
+
<div id="sidebar" class="sidebar">
|
44
|
+
<%= render "layouts/phcdevworks_accounts/components/backend/sidebars/side_menu" %>
|
45
|
+
</div>
|
46
|
+
<div class="sidebar-bg"></div>
|
47
|
+
<!-- Page Sidebar -->
|
48
|
+
|
49
|
+
<!-- Page Content -->
|
50
|
+
<div id="content" class="content content-full-width">
|
51
|
+
<%= yield %>
|
52
|
+
</div>
|
53
|
+
<!-- Page Content -->
|
54
|
+
|
55
|
+
<!-- Footer Content -->
|
56
|
+
<div id="footer" class="footer mb-4">
|
57
|
+
<%= render "layouts/phcdevworks_accounts/components/backend/footer/footer" %>
|
58
|
+
</div>
|
59
|
+
<!-- Footer Content -->
|
60
|
+
|
61
|
+
</div>
|
62
|
+
<!-- Page Container -->
|
63
|
+
|
64
|
+
</body>
|
65
|
+
</html>
|
@@ -270,7 +270,7 @@
|
|
270
270
|
<span>Admin</span>
|
271
271
|
</a>
|
272
272
|
<ul class="sub-menu">
|
273
|
-
<li class="<%= phc_menu_active_controller("phcdevworks_accounts/admin/users") %>"><%= link_to "User List", phcdevworks_accounts.
|
273
|
+
<li class="<%= phc_menu_active_controller("phcdevworks_accounts/admin/users") %>"><%= link_to "User List", phcdevworks_accounts.admin_users_all_path %></li>
|
274
274
|
</ul>
|
275
275
|
</li>
|
276
276
|
<!-- -PHC- Sidebar - Sidebar Navigation - PHCAccounts Admin Options -->
|
@@ -6,27 +6,26 @@
|
|
6
6
|
<% phc_seo_title "PHCDevworks Accounts" %>
|
7
7
|
<% phc_seo_description "Ruby on Rails 6 Authentication and User Management Engine." %>
|
8
8
|
<!-- SEO System -->
|
9
|
-
|
9
|
+
|
10
10
|
<!-- SEO and Site Description -->
|
11
|
-
|
12
|
-
|
13
|
-
<meta name="
|
14
|
-
|
15
|
-
<link rel="canonical" href="http://phcdevworks.com">
|
11
|
+
<meta charset="utf-8">
|
12
|
+
<title><%= yield(:phc_seo_title) %></title>
|
13
|
+
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
|
14
|
+
<meta name="description" content="<%= yield(:phc_seo_description) %>">
|
16
15
|
<!-- SEO and Site Description -->
|
17
|
-
|
16
|
+
|
18
17
|
<!-- Rails Security Tags -->
|
19
18
|
<%= csrf_meta_tags %>
|
20
19
|
<%= csp_meta_tag %>
|
21
20
|
<!-- Rails Security Tags -->
|
22
|
-
|
21
|
+
|
23
22
|
<!-- CSS Styles -->
|
24
|
-
<%= stylesheet_link_tag "
|
23
|
+
<%= stylesheet_link_tag "phcthemes_admin_panel_pack_coloradmin", media: "all" %>
|
25
24
|
<!-- CSS Styles -->
|
26
|
-
|
27
|
-
<!--
|
28
|
-
|
29
|
-
<!--
|
25
|
+
|
26
|
+
<!-- JavaScript -->
|
27
|
+
<%= javascript_include_tag "phcthemes_admin_panel_pack_coloradmin" %>
|
28
|
+
<!-- JavaScript -->
|
30
29
|
|
31
30
|
</head>
|
32
31
|
<body class="pace-top bg-white">
|
@@ -35,9 +34,5 @@
|
|
35
34
|
<%= yield %>
|
36
35
|
<!-- Page Content -->
|
37
36
|
|
38
|
-
<!-- JavaScript -->
|
39
|
-
<%= javascript_include_tag "phcdevworks_accounts/application", "data-turbolinks-track": "reload" %>
|
40
|
-
<!-- JavaScript -->
|
41
|
-
|
42
37
|
</body>
|
43
38
|
</html>
|
@@ -0,0 +1,27 @@
|
|
1
|
+
<div class="profile-header">
|
2
|
+
|
3
|
+
<!-- User Profiles - Header - Cover -->
|
4
|
+
<div class="profile-header-cover"></div>
|
5
|
+
<!-- User Profiles - Header - Cover -->
|
6
|
+
|
7
|
+
<!-- User Profiles - Header - Content -->
|
8
|
+
<div class="profile-header-content">
|
9
|
+
<div class="profile-header-img">
|
10
|
+
<%= image_tag @admin_user.gravatar_url :secure => true, :filetype => :png, :size => 128 %>
|
11
|
+
</div>
|
12
|
+
<div class="profile-header-info">
|
13
|
+
<h4 class="m-t-10 m-b-5"><%= @admin_user.firstname + ' ' + @admin_user.lastname %></h4>
|
14
|
+
<p class="m-b-10"><%= @admin_user.username %></p>
|
15
|
+
<%= link_to edit_user_registration_path(@admin_user), class: "btn btn-xs btn-yellow" do %>
|
16
|
+
<i class="fad fa-user-edit"></i> Update Member Information
|
17
|
+
<% end %>
|
18
|
+
</div>
|
19
|
+
</div>
|
20
|
+
<!-- User Profiles - Header - Content -->
|
21
|
+
|
22
|
+
<!-- User Profiles - Header - Tab Bar -->
|
23
|
+
<ul class="profile-header-tab nav nav-tabs">
|
24
|
+
</ul>
|
25
|
+
<!-- User Profiles - Header - Tab Bar -->
|
26
|
+
|
27
|
+
</div>
|
@@ -0,0 +1,22 @@
|
|
1
|
+
<!-- PHCTitleSEO Title Variables -->
|
2
|
+
<% phc_title "User Manager" %>
|
3
|
+
<% phc_title_tagline "Useer Profile" %>
|
4
|
+
<% phc_breadcrumb_one yield(:phc_title) %>
|
5
|
+
<% phc_breadcrumb_two yield(:phc_title_tagline) %>
|
6
|
+
<!-- PHCTitleSEO Title Variables -->
|
7
|
+
|
8
|
+
<!-- User Profiles - Header -->
|
9
|
+
<div class="profile">
|
10
|
+
<%= render 'phcdevworks_accounts/admin/pages/components/profile_header' %>
|
11
|
+
</div>
|
12
|
+
<!-- User Profiles - Header -->
|
13
|
+
|
14
|
+
<!-- User Profiles - Remove Full Page Width -->
|
15
|
+
<div class="profile-content">
|
16
|
+
<div class="tab-content p-0">
|
17
|
+
|
18
|
+
<%= render 'phcdevworks_notifications/bootstrap/notifications' %>
|
19
|
+
|
20
|
+
</div>
|
21
|
+
</div>
|
22
|
+
<!-- User Profiles - Remove Full Page Width -->
|
@@ -1,6 +1,6 @@
|
|
1
1
|
<!-- PHCTitleSEO Title Variables -->
|
2
|
-
<% phc_title "
|
3
|
-
<% phc_title_tagline "
|
2
|
+
<% phc_title "User Manager" %>
|
3
|
+
<% phc_title_tagline "Useer Index" %>
|
4
4
|
<% phc_breadcrumb_one yield(:phc_title) %>
|
5
5
|
<% phc_breadcrumb_two yield(:phc_title_tagline) %>
|
6
6
|
<!-- PHCTitleSEO Title Variables -->
|
@@ -67,4 +67,4 @@
|
|
67
67
|
|
68
68
|
</div>
|
69
69
|
</div>
|
70
|
-
<!-- Page Content -->
|
70
|
+
<!-- Page Content -->
|
File without changes
|
@@ -1,7 +1,7 @@
|
|
1
1
|
<!-- PHCTitleSEO Title Variables -->
|
2
2
|
<% phc_title resource_name.to_s.humanize + " Unlock Password" %>
|
3
3
|
<% phc_title_tagline "Unlock Your " + resource_name.to_s.humanize + " Unlock Password" %>
|
4
|
-
<% phc_breadcrumb_one link_to resource_name.to_s.humanize + " Home", phcdevworks_accounts.
|
4
|
+
<% phc_breadcrumb_one link_to resource_name.to_s.humanize + " Home", phcdevworks_accounts.user_dashboard_path %>
|
5
5
|
<% phc_breadcrumb_two yield(:phc_title_tagline) %>
|
6
6
|
<!-- PHCTitleSEO Title Variables -->
|
7
7
|
|
@@ -1,7 +1,7 @@
|
|
1
1
|
<!-- PHCTitleSEO Title Variables -->
|
2
2
|
<% phc_title resource_name.to_s.humanize + " Edit Password" %>
|
3
3
|
<% phc_title_tagline "Edit Your " + resource_name.to_s.humanize + " Edit Password" %>
|
4
|
-
<% phc_breadcrumb_one link_to resource_name.to_s.humanize + " Accounts Home", phcdevworks_accounts.
|
4
|
+
<% phc_breadcrumb_one link_to resource_name.to_s.humanize + " Accounts Home", phcdevworks_accounts.user_dashboard_path %>
|
5
5
|
<% phc_breadcrumb_two yield(:phc_title_tagline) %>
|
6
6
|
<!-- PHCTitleSEO Title Variables -->
|
7
7
|
|
@@ -2,7 +2,7 @@
|
|
2
2
|
<% phc_title resource_name.to_s.humanize + " Account Information" %>
|
3
3
|
<% phc_title_tagline "Edit Your " + resource_name.to_s.humanize + " Account Information" %>
|
4
4
|
<% phc_breadcrumb_one link_to "Home", main_app.root_path %>
|
5
|
-
<% phc_breadcrumb_two link_to "Accounts Dashboard", phcdevworks_accounts.
|
5
|
+
<% phc_breadcrumb_two link_to "Accounts Dashboard", phcdevworks_accounts.user_dashboard_path %>
|
6
6
|
<% phc_breadcrumb_three yield(:phc_title_tagline) %>
|
7
7
|
<!-- PHCTitleSEO Title Variables -->
|
8
8
|
|
@@ -1,7 +1,7 @@
|
|
1
1
|
<!-- Title System -->
|
2
2
|
<% phc_title resource_name.to_s.humanize + " Unlock Password" %>
|
3
3
|
<% phc_title_tagline "Unlock Your " + resource_name.to_s.humanize + " Unlock Password" %>
|
4
|
-
<% phc_breadcrumb_one link_to resource_name.to_s.humanize + " Home", phcdevworks_accounts.
|
4
|
+
<% phc_breadcrumb_one link_to resource_name.to_s.humanize + " Home", phcdevworks_accounts.user_dashboard_path %>
|
5
5
|
<% phc_breadcrumb_two yield(:phc_title_tagline) %>
|
6
6
|
<!-- Title System -->
|
7
7
|
|
data/config/routes.rb
CHANGED
@@ -7,15 +7,12 @@ PhcdevworksAccounts::Engine.routes.draw do
|
|
7
7
|
}
|
8
8
|
|
9
9
|
# User Dashboard
|
10
|
+
match "user/dashboard", to: "user/pages#dashboard", via: "get"
|
10
11
|
match "user/profile", to: "user/pages#profile", via: "get"
|
11
12
|
|
12
13
|
# Admin Routes
|
13
14
|
match "/admin", to: "admin/pages#dashboard", via: "get"
|
14
15
|
match "/admin/users/all", to: "admin/pages#users_list", via: "get"
|
15
|
-
match "/admin/user/:id", to: "admin/pages#
|
16
|
-
|
17
|
-
# Old Path Support (Will be Depricated)
|
18
|
-
get "dashboard", to: "user/pages#profile"
|
19
|
-
get "admin_users_index", to: "admin/pages#dashboard"
|
16
|
+
match "/admin/user/:id", to: "admin/pages#user_profile", via: "get"
|
20
17
|
|
21
18
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: phcdevworks_accounts
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.
|
4
|
+
version: 2.4.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- PHCDevworks
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2020-
|
11
|
+
date: 2020-12-10 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rails
|
@@ -16,20 +16,14 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - "~>"
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: '6.
|
20
|
-
- - ">="
|
21
|
-
- !ruby/object:Gem::Version
|
22
|
-
version: 6.0.3.4
|
19
|
+
version: '6.1'
|
23
20
|
type: :runtime
|
24
21
|
prerelease: false
|
25
22
|
version_requirements: !ruby/object:Gem::Requirement
|
26
23
|
requirements:
|
27
24
|
- - "~>"
|
28
25
|
- !ruby/object:Gem::Version
|
29
|
-
version: '6.
|
30
|
-
- - ">="
|
31
|
-
- !ruby/object:Gem::Version
|
32
|
-
version: 6.0.3.4
|
26
|
+
version: '6.1'
|
33
27
|
- !ruby/object:Gem::Dependency
|
34
28
|
name: jbuilder
|
35
29
|
requirement: !ruby/object:Gem::Requirement
|
@@ -64,84 +58,84 @@ dependencies:
|
|
64
58
|
requirements:
|
65
59
|
- - "~>"
|
66
60
|
- !ruby/object:Gem::Version
|
67
|
-
version: '3.
|
61
|
+
version: '3.2'
|
68
62
|
type: :runtime
|
69
63
|
prerelease: false
|
70
64
|
version_requirements: !ruby/object:Gem::Requirement
|
71
65
|
requirements:
|
72
66
|
- - "~>"
|
73
67
|
- !ruby/object:Gem::Version
|
74
|
-
version: '3.
|
68
|
+
version: '3.2'
|
75
69
|
- !ruby/object:Gem::Dependency
|
76
70
|
name: phcthemes_web_theme_pack
|
77
71
|
requirement: !ruby/object:Gem::Requirement
|
78
72
|
requirements:
|
79
73
|
- - "~>"
|
80
74
|
- !ruby/object:Gem::Version
|
81
|
-
version: '3.
|
75
|
+
version: '3.2'
|
82
76
|
type: :runtime
|
83
77
|
prerelease: false
|
84
78
|
version_requirements: !ruby/object:Gem::Requirement
|
85
79
|
requirements:
|
86
80
|
- - "~>"
|
87
81
|
- !ruby/object:Gem::Version
|
88
|
-
version: '3.
|
82
|
+
version: '3.2'
|
89
83
|
- !ruby/object:Gem::Dependency
|
90
84
|
name: phcdevworks_active_menus
|
91
85
|
requirement: !ruby/object:Gem::Requirement
|
92
86
|
requirements:
|
93
87
|
- - "~>"
|
94
88
|
- !ruby/object:Gem::Version
|
95
|
-
version: '2.
|
89
|
+
version: '2.2'
|
96
90
|
type: :runtime
|
97
91
|
prerelease: false
|
98
92
|
version_requirements: !ruby/object:Gem::Requirement
|
99
93
|
requirements:
|
100
94
|
- - "~>"
|
101
95
|
- !ruby/object:Gem::Version
|
102
|
-
version: '2.
|
96
|
+
version: '2.2'
|
103
97
|
- !ruby/object:Gem::Dependency
|
104
98
|
name: phcdevworks_core
|
105
99
|
requirement: !ruby/object:Gem::Requirement
|
106
100
|
requirements:
|
107
101
|
- - "~>"
|
108
102
|
- !ruby/object:Gem::Version
|
109
|
-
version: '2.
|
103
|
+
version: '2.2'
|
110
104
|
type: :runtime
|
111
105
|
prerelease: false
|
112
106
|
version_requirements: !ruby/object:Gem::Requirement
|
113
107
|
requirements:
|
114
108
|
- - "~>"
|
115
109
|
- !ruby/object:Gem::Version
|
116
|
-
version: '2.
|
110
|
+
version: '2.2'
|
117
111
|
- !ruby/object:Gem::Dependency
|
118
112
|
name: phcdevworks_notifications
|
119
113
|
requirement: !ruby/object:Gem::Requirement
|
120
114
|
requirements:
|
121
115
|
- - "~>"
|
122
116
|
- !ruby/object:Gem::Version
|
123
|
-
version: '2.
|
117
|
+
version: '2.2'
|
124
118
|
type: :runtime
|
125
119
|
prerelease: false
|
126
120
|
version_requirements: !ruby/object:Gem::Requirement
|
127
121
|
requirements:
|
128
122
|
- - "~>"
|
129
123
|
- !ruby/object:Gem::Version
|
130
|
-
version: '2.
|
124
|
+
version: '2.2'
|
131
125
|
- !ruby/object:Gem::Dependency
|
132
126
|
name: phcdevworks_titleseo
|
133
127
|
requirement: !ruby/object:Gem::Requirement
|
134
128
|
requirements:
|
135
129
|
- - "~>"
|
136
130
|
- !ruby/object:Gem::Version
|
137
|
-
version: '3.
|
131
|
+
version: '3.2'
|
138
132
|
type: :runtime
|
139
133
|
prerelease: false
|
140
134
|
version_requirements: !ruby/object:Gem::Requirement
|
141
135
|
requirements:
|
142
136
|
- - "~>"
|
143
137
|
- !ruby/object:Gem::Version
|
144
|
-
version: '3.
|
138
|
+
version: '3.2'
|
145
139
|
- !ruby/object:Gem::Dependency
|
146
140
|
name: wicked
|
147
141
|
requirement: !ruby/object:Gem::Requirement
|
@@ -184,20 +178,34 @@ dependencies:
|
|
184
178
|
- - "~>"
|
185
179
|
- !ruby/object:Gem::Version
|
186
180
|
version: '3.2'
|
181
|
+
- !ruby/object:Gem::Dependency
|
182
|
+
name: mail_form
|
183
|
+
requirement: !ruby/object:Gem::Requirement
|
184
|
+
requirements:
|
185
|
+
- - "~>"
|
186
|
+
- !ruby/object:Gem::Version
|
187
|
+
version: '1.8'
|
188
|
+
type: :runtime
|
189
|
+
prerelease: false
|
190
|
+
version_requirements: !ruby/object:Gem::Requirement
|
191
|
+
requirements:
|
192
|
+
- - "~>"
|
193
|
+
- !ruby/object:Gem::Version
|
194
|
+
version: '1.8'
|
187
195
|
- !ruby/object:Gem::Dependency
|
188
196
|
name: aws-sdk-s3
|
189
197
|
requirement: !ruby/object:Gem::Requirement
|
190
198
|
requirements:
|
191
199
|
- - "~>"
|
192
200
|
- !ruby/object:Gem::Version
|
193
|
-
version: '1.
|
201
|
+
version: '1.86'
|
194
202
|
type: :runtime
|
195
203
|
prerelease: false
|
196
204
|
version_requirements: !ruby/object:Gem::Requirement
|
197
205
|
requirements:
|
198
206
|
- - "~>"
|
199
207
|
- !ruby/object:Gem::Version
|
200
|
-
version: '1.
|
208
|
+
version: '1.86'
|
201
209
|
- !ruby/object:Gem::Dependency
|
202
210
|
name: google-cloud-storage
|
203
211
|
requirement: !ruby/object:Gem::Requirement
|
@@ -306,13 +314,16 @@ files:
|
|
306
314
|
- app/views/layouts/phcdevworks_accounts/application.html.erb
|
307
315
|
- app/views/layouts/phcdevworks_accounts/application_full_width.html.erb
|
308
316
|
- app/views/layouts/phcdevworks_accounts/application_no_sidebar.html.erb
|
317
|
+
- app/views/layouts/phcdevworks_accounts/application_profile.html.erb
|
309
318
|
- app/views/layouts/phcdevworks_accounts/components/backend/footer/_footer.html.erb
|
310
319
|
- app/views/layouts/phcdevworks_accounts/components/backend/navigation/_top_menu.html.erb
|
311
320
|
- app/views/layouts/phcdevworks_accounts/components/backend/sidebars/_side_menu.html.erb
|
312
321
|
- app/views/layouts/phcdevworks_accounts/devise.html.erb
|
322
|
+
- app/views/phcdevworks_accounts/admin/pages/components/_profile_header.html.erb
|
313
323
|
- app/views/phcdevworks_accounts/admin/pages/dashboard.html.erb
|
314
|
-
- app/views/phcdevworks_accounts/admin/pages/
|
324
|
+
- app/views/phcdevworks_accounts/admin/pages/user_profile.html.erb
|
315
325
|
- app/views/phcdevworks_accounts/admin/pages/users_list.html.erb
|
326
|
+
- app/views/phcdevworks_accounts/user/pages/dashboard.html.erb
|
316
327
|
- app/views/phcdevworks_accounts/user/pages/profile.html.erb
|
317
328
|
- app/views/users/confirmations/new.html.erb
|
318
329
|
- app/views/users/mailer/confirmation_instructions.html.erb
|