egov_utils 0.6.4 → 0.7.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/app/controllers/egov_utils/users_controller.rb +15 -2
- data/app/models/egov_utils/user.rb +10 -1
- data/app/views/common/_grid.html.coffee +20 -18
- data/app/views/egov_utils/users/_users_tab.html.haml +2 -0
- data/app/views/egov_utils/users/edit.html.haml +4 -0
- data/config/locales/cs.yml +4 -0
- data/db/migrate/20220331113917_add_days_before_inactive_to_egov_utils_users.rb +5 -0
- data/lib/egov_utils/version.rb +1 -1
- metadata +4 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d0fb4d51f6f37b8c70952049ec7570dec41ad52272155c457f24a3326223319b
|
4
|
+
data.tar.gz: b689068162ba29eed688e46a44ebb92286634187854c29aa73d1e898f53abc69
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c58af4cd7c8f02e87536fb5b5f0b347b4d03ddfc326a93c8e705627b3631d064206fc0fccef02e72f45b40f6679f6de048c36044230273a9964aead64f441ec5
|
7
|
+
data.tar.gz: ed7a4cc54856c518f91b35791974700f3485af6210899a7c940e7eb75114800a4f3104368ba4db650646ac8fd73d6a51817902430c2dc9fe0c7d900f399fa7fb
|
@@ -4,9 +4,9 @@ require_dependency "egov_utils/auth_source"
|
|
4
4
|
module EgovUtils
|
5
5
|
class UsersController < ApplicationController
|
6
6
|
|
7
|
-
skip_before_action :require_login, only: [:new, :create, :confirm]
|
7
|
+
skip_before_action :require_login, only: [:new, :create, :confirm, :edit, :update]
|
8
8
|
|
9
|
-
load_and_authorize_resource only: [:index, :new, :create, :show, :destroy]
|
9
|
+
load_and_authorize_resource only: [:index, :new, :create, :show, :destroy, :edit, :update]
|
10
10
|
|
11
11
|
def index
|
12
12
|
providers
|
@@ -46,6 +46,15 @@ module EgovUtils
|
|
46
46
|
def show
|
47
47
|
end
|
48
48
|
|
49
|
+
def edit
|
50
|
+
end
|
51
|
+
|
52
|
+
def update
|
53
|
+
@user.update(update_params)
|
54
|
+
|
55
|
+
redirect_to users_path, notice: t('activerecord.successful.messages.updated', model: User.model_name.human)
|
56
|
+
end
|
57
|
+
|
49
58
|
def destroy
|
50
59
|
@user.destroy
|
51
60
|
redirect_to users_path, notice: t('activerecord.successful.messages.destroyed', model: User.model_name.human)
|
@@ -92,5 +101,9 @@ module EgovUtils
|
|
92
101
|
params_to_permit << :generate_password if current_user.logged?
|
93
102
|
params.require(:user).permit(*params_to_permit)
|
94
103
|
end
|
104
|
+
|
105
|
+
def update_params
|
106
|
+
params.require(:user).permit(:days_before_inactive)
|
107
|
+
end
|
95
108
|
end
|
96
109
|
end
|
@@ -63,7 +63,16 @@ module EgovUtils
|
|
63
63
|
end
|
64
64
|
end
|
65
65
|
end
|
66
|
-
|
66
|
+
|
67
|
+
if user && !user.new_record?
|
68
|
+
# Check last login
|
69
|
+
if user.days_before_inactive && user.last_login_at < (Time.now - user.days_before_inactive.days)
|
70
|
+
user.update_column(active: false)
|
71
|
+
end
|
72
|
+
|
73
|
+
user.update_column(:last_login_at, Time.now) if user.active?
|
74
|
+
end
|
75
|
+
|
67
76
|
user
|
68
77
|
end
|
69
78
|
|
@@ -98,25 +98,27 @@ $ ->
|
|
98
98
|
<% schema.columns.each do |col| %>
|
99
99
|
<%= raw column_for_grid(grid, col) %>
|
100
100
|
<% end %>
|
101
|
-
<%
|
102
|
-
|
103
|
-
|
104
|
-
|
105
|
-
|
106
|
-
|
107
|
-
<%
|
108
|
-
|
101
|
+
<% unless local_assigns.fetch(:disable_actions, false) %>
|
102
|
+
<% if can?(:update, schema.model) || (local_assigns.fetch(:allow_delete, false) && can?(:destroy, schema.model)) %>
|
103
|
+
{
|
104
|
+
width: 150
|
105
|
+
title: "<%= t('label_actions') %>"
|
106
|
+
buttons: [
|
107
|
+
<% if can?(:read, schema.model) %>
|
108
|
+
<% local_assigns.fetch(:downloads, {}).each do |format, label| %>
|
109
|
+
{ cls: 'btn btn-sm btn-secondary <%= "download-button-#{format}" %>', caption: '<%= label %>', click: prepareDownload('<%= format %>') },
|
110
|
+
<% end %>
|
109
111
|
<% end %>
|
110
|
-
|
111
|
-
|
112
|
-
|
113
|
-
|
114
|
-
|
115
|
-
|
116
|
-
|
117
|
-
|
118
|
-
|
119
|
-
|
112
|
+
<% if can?(:update, schema.model) %>
|
113
|
+
{cls: 'btn btn-sm btn-primary', caption: '<%= t('label_edit') %>', click: editRecord},
|
114
|
+
<% end %>
|
115
|
+
<%= additional_grid_edit_buttons(schema) %>
|
116
|
+
<% if local_assigns.fetch(:allow_delete, false) && can?(:destroy, schema.model) %>
|
117
|
+
{commandName: 'delete', caption: '<%= t('label_delete') %>'}
|
118
|
+
<% end %>
|
119
|
+
]
|
120
|
+
}
|
121
|
+
<% end %>
|
120
122
|
<% end %>
|
121
123
|
],
|
122
124
|
sorting:
|
@@ -23,6 +23,8 @@
|
|
23
23
|
= button_to(t('label_delete'), user_path(user), method: :delete, class: 'btn btn-warning btn-sm')
|
24
24
|
- if can?(:manage, user) && user.password_change_possible?
|
25
25
|
= link_to(t('label_change_password'), new_password_path(user), class: 'btn btn-secondary btn-sm')
|
26
|
+
- if can?(:edit, user)
|
27
|
+
= link_to(t('label_edit'), edit_user_path(user), class: 'btn btn-secondary btn-sm')
|
26
28
|
- unless user.active?
|
27
29
|
= button_to(t('label_approve'), approve_user_path(user), class: 'btn btn-primary btn-sm')
|
28
30
|
|
data/config/locales/cs.yml
CHANGED
@@ -90,6 +90,7 @@ cs:
|
|
90
90
|
|
91
91
|
model_attributes: &my_attributes
|
92
92
|
egov_utils/user:
|
93
|
+
days_before_inactive: Počet dní od posledního přihlášení před deaktivací
|
93
94
|
login: Přihlašovací email
|
94
95
|
mail: E-mail
|
95
96
|
password_confirmation: Potvrzení hesla
|
@@ -137,6 +138,7 @@ cs:
|
|
137
138
|
|
138
139
|
model_help_messages: &my_help_messages
|
139
140
|
egov_utils/user:
|
141
|
+
days_before_inactive: Pokud ponecháte pole prázdné, uživatelský účet nebude expirovat.
|
140
142
|
generate_password: Heslo bude vygenerováno a posláno uživateli na e-mail, při prvním přihlášení bude heslo muset změnit.
|
141
143
|
|
142
144
|
|
@@ -154,6 +156,8 @@ cs:
|
|
154
156
|
mail: E-mailová adresa
|
155
157
|
|
156
158
|
submits: &my_submits
|
159
|
+
user:
|
160
|
+
update: Aktualizovat uživatele
|
157
161
|
password_change:
|
158
162
|
submit: Změnit heslo
|
159
163
|
|
data/lib/egov_utils/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: egov_utils
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.7.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Ondřej Ezr
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2022-04-01 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rails
|
@@ -581,6 +581,7 @@ files:
|
|
581
581
|
- app/views/egov_utils/users/_form.html.haml
|
582
582
|
- app/views/egov_utils/users/_ldap_search.html.haml
|
583
583
|
- app/views/egov_utils/users/_users_tab.html.haml
|
584
|
+
- app/views/egov_utils/users/edit.html.haml
|
584
585
|
- app/views/egov_utils/users/index.html.haml
|
585
586
|
- app/views/egov_utils/users/new.html.haml
|
586
587
|
- app/views/egov_utils/users/show.html.haml
|
@@ -613,6 +614,7 @@ files:
|
|
613
614
|
- db/migrate/20180403141531_join_people_tables.rb
|
614
615
|
- db/migrate/20180403150556_create_egov_utils_legal_people.rb
|
615
616
|
- db/migrate/20180424143207_add_titles_to_natural_people.rb
|
617
|
+
- db/migrate/20220331113917_add_days_before_inactive_to_egov_utils_users.rb
|
616
618
|
- lib/azahara_schema_currency.rb
|
617
619
|
- lib/azahara_schema_currency/aggregation_attribute_patch.rb
|
618
620
|
- lib/azahara_schema_currency/association_attribute_patch.rb
|