lesli_shield 1.0.2 → 1.0.4

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.
Files changed (115) hide show
  1. checksums.yaml +4 -4
  2. data/app/assets/stylesheets/lesli_shield/confirmations.css +18763 -0
  3. data/app/assets/stylesheets/lesli_shield/devise/oauth.css +32 -0
  4. data/app/assets/stylesheets/lesli_shield/passwords.css +18717 -1
  5. data/app/assets/stylesheets/lesli_shield/registrations.css +18804 -1
  6. data/app/assets/stylesheets/lesli_shield/sessions.css +18804 -1
  7. data/app/assets/stylesheets/lesli_shield/users.css +30 -0
  8. data/app/controllers/lesli_shield/dashboards_controller.rb +1 -8
  9. data/app/controllers/lesli_shield/invites_controller.rb +80 -0
  10. data/app/controllers/lesli_shield/role/actions_controller.rb +32 -20
  11. data/app/controllers/lesli_shield/roles_controller.rb +16 -8
  12. data/app/controllers/lesli_shield/sessions_controller.rb +5 -8
  13. data/app/controllers/lesli_shield/user/roles_controller.rb +62 -0
  14. data/app/controllers/lesli_shield/users_controller.rb +57 -20
  15. data/app/controllers/users/confirmations_controller.rb +42 -8
  16. data/app/controllers/users/passwords_controller.rb +52 -37
  17. data/app/controllers/users/registrations_controller.rb +2 -8
  18. data/app/controllers/users/sessions_controller.rb +57 -50
  19. data/app/helpers/lesli_shield/invites_helper.rb +4 -0
  20. data/app/helpers/lesli_shield/user/roles_helper.rb +4 -0
  21. data/app/interfaces/lesli_shield/authorization_interface.rb +8 -2
  22. data/app/mailers/lesli_shield/devise_mailer.rb +98 -0
  23. data/app/mailers/lesli_shield/invitation.html.erb +23 -0
  24. data/app/models/concerns/lesli_shield/user_security.rb +222 -0
  25. data/app/models/lesli_shield/account.rb +1 -1
  26. data/app/models/lesli_shield/dashboard.rb +1 -4
  27. data/app/models/lesli_shield/invite.rb +24 -0
  28. data/{lib/vue/confirmations.js → app/models/lesli_shield/role/action.rb} +17 -10
  29. data/{db/migrate/v1/0801003010_create_lesli_shield_dashboards.rb → app/models/lesli_shield/role/privilege.rb} +5 -4
  30. data/app/models/lesli_shield/user/role.rb +8 -0
  31. data/app/models/lesli_shield/user/session.rb +80 -0
  32. data/app/services/lesli_shield/invite_service.rb +43 -0
  33. data/app/services/lesli_shield/role_action_service.rb +118 -0
  34. data/app/services/lesli_shield/role_privilege_service.rb +112 -0
  35. data/app/{operators/lesli_shield/user_registration_operator.rb → services/lesli_shield/user_registration_service.rb} +26 -29
  36. data/app/services/lesli_shield/user_session_service.rb +78 -0
  37. data/app/services/lesli_shield/user_validator_service.rb +221 -0
  38. data/app/views/devise/confirmations/show.html.erb +4 -6
  39. data/app/views/devise/passwords/edit.html.erb +1 -2
  40. data/app/views/devise/passwords/new.html.erb +1 -1
  41. data/app/views/devise/registrations/new.html.erb +5 -4
  42. data/app/views/devise/sessions/new.html.erb +3 -2
  43. data/app/views/devise/shared/_application-devise-simple.erb +59 -0
  44. data/app/views/devise/shared/_application-devise.html.erb +76 -0
  45. data/app/views/lesli_shield/dashboards/_component-calendar.html.erb +1 -0
  46. data/app/views/lesli_shield/dashboards/_component-chart-bar.html.erb +6 -0
  47. data/app/views/lesli_shield/dashboards/_component-chart-line.html.erb +8 -0
  48. data/app/views/lesli_shield/dashboards/_component-count.html.erb +1 -0
  49. data/app/views/lesli_shield/dashboards/_component-date.html.erb +1 -0
  50. data/app/views/lesli_shield/dashboards/_component-weather.html.erb +1 -0
  51. data/app/views/lesli_shield/invites/_form.html.erb +10 -0
  52. data/app/views/lesli_shield/invites/_invite.html.erb +2 -0
  53. data/app/views/lesli_shield/invites/edit.html.erb +12 -0
  54. data/app/views/lesli_shield/invites/index.html.erb +66 -0
  55. data/{db/migrate/v1/0801001710_create_lesli_shield_settings.rb → app/views/lesli_shield/invites/new.html.erb} +9 -10
  56. data/{lib/vue/apps/dashboards/components/engine-version.vue → app/views/lesli_shield/invites/show.html.erb} +26 -43
  57. data/app/views/lesli_shield/partials/_navigation.html.erb +2 -4
  58. data/app/views/lesli_shield/{roles/_form-privileges.html.erb → role/actions/_form.html.erb} +5 -30
  59. data/app/views/lesli_shield/role/actions/index.html.erb +14 -0
  60. data/app/views/lesli_shield/roles/index.html.erb +2 -6
  61. data/app/views/lesli_shield/roles/new.html.erb +0 -11
  62. data/app/views/lesli_shield/roles/show.html.erb +5 -8
  63. data/app/views/lesli_shield/user/roles/_form.html.erb +17 -0
  64. data/app/views/lesli_shield/user/roles/_role.html.erb +2 -0
  65. data/app/views/lesli_shield/user/roles/edit.html.erb +12 -0
  66. data/app/views/lesli_shield/user/roles/index.html.erb +16 -0
  67. data/app/views/lesli_shield/user/roles/new.html.erb +11 -0
  68. data/app/views/lesli_shield/user/roles/show.html.erb +10 -0
  69. data/app/views/lesli_shield/users/{_viewer-activities.html.erb → _activities-viewer.html.erb} +2 -4
  70. data/app/views/lesli_shield/users/_information-card.html.erb +3 -3
  71. data/app/views/lesli_shield/users/_management-privileges.html.erb +74 -0
  72. data/app/views/lesli_shield/users/_management-security.html.erb +5 -0
  73. data/app/views/lesli_shield/users/index.html.erb +3 -7
  74. data/app/views/lesli_shield/users/new.html.erb +5 -11
  75. data/app/views/lesli_shield/users/show.html.erb +7 -5
  76. data/config/initializers/devise.rb +305 -304
  77. data/config/locales/translations.en.yml +4 -1
  78. data/config/locales/translations.es.yml +4 -1
  79. data/config/locales/translations.it.yml +4 -1
  80. data/config/routes.rb +7 -8
  81. data/db/migrate/v1/0801100210_create_lesli_shield_role_actions.rb +48 -0
  82. data/db/migrate/v1/0801100410_create_lesli_shield_role_privileges.rb +45 -0
  83. data/db/migrate/v1/0801110110_create_lesli_shield_user_roles.rb +43 -0
  84. data/db/migrate/v1/0801111210_create_lesli_shield_user_sessions.rb +56 -0
  85. data/db/migrate/v1/0801120110_create_lesli_shield_invites.rb +49 -0
  86. data/lib/lesli_shield/engine.rb +3 -3
  87. data/lib/lesli_shield/router.rb +21 -0
  88. data/lib/lesli_shield/version.rb +2 -2
  89. data/lib/lesli_shield.rb +1 -1
  90. data/lib/scss/_devise.scss +10 -0
  91. data/lib/scss/confirmations.scss +24 -24
  92. data/lib/tasks/lesli_shield_tasks.rake +1 -1
  93. data/readme.md +59 -20
  94. metadata +69 -44
  95. data/app/controllers/lesli_shield/dashboard/components_controller.rb +0 -60
  96. data/app/models/lesli_shield/dashboard/component.rb +0 -18
  97. data/app/views/lesli_shield/dashboards/edit.html.erb +0 -1
  98. data/app/views/lesli_shield/dashboards/index.html.erb +0 -9
  99. data/app/views/lesli_shield/dashboards/new.html.erb +0 -1
  100. data/app/views/lesli_shield/dashboards/show.html.erb +0 -1
  101. data/app/views/lesli_shield/roles/_session.html.erb +0 -2
  102. data/app/views/lesli_shield/roles/edit.html.erb +0 -12
  103. data/app/views/lesli_shield/roles/update.turbo_stream.erb +0 -3
  104. data/app/views/lesli_shield/users/update.turbo_stream.erb +0 -3
  105. data/lib/lesli_shield/routing.rb +0 -23
  106. data/lib/vue/application.js +0 -83
  107. data/lib/vue/apps/sessions/index.vue +0 -50
  108. data/lib/vue/passwords.js +0 -137
  109. data/lib/vue/registrations.js +0 -144
  110. data/lib/vue/sessions.js +0 -148
  111. data/lib/vue/stores/sessions.js +0 -43
  112. data/lib/vue/stores/translations.json +0 -162
  113. /data/app/views/lesli_shield/roles/{_form-information.html.erb → _form.html.erb} +0 -0
  114. /data/db/migrate/v1/{0801120310_create_lesli_shield_user_shortcuts.rb → 0801111010_create_lesli_shield_user_shortcuts.rb} +0 -0
  115. /data/db/migrate/v1/{0801120410_create_lesli_shield_user_tokens.rb → 0801111110_create_lesli_shield_user_tokens.rb} +0 -0
@@ -1,144 +0,0 @@
1
- /*
2
-
3
- Lesli
4
-
5
- Copyright (c) 2023, Lesli Technologies, S. A.
6
-
7
- This program is free software: you can redistribute it and/or modify
8
- it under the terms of the GNU General Public License as published by
9
- the Free Software Foundation, either version 3 of the License, or
10
- (at your option) any later version.
11
-
12
- This program is distributed in the hope that it will be useful,
13
- but WITHOUT ANY WARRANTY; without even the implied warranty of
14
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15
- GNU General Public License for more details.
16
-
17
- You should have received a copy of the GNU General Public License
18
- along with this program. If not, see http://www.gnu.org/licenses/.
19
-
20
- Lesli · Ruby on Rails SaaS Development Framework.
21
-
22
- Made with ♥ by LesliTech
23
- Building a better future, one line of code at a time.
24
-
25
- @contact hello@lesli.tech
26
- @website https://www.lesli.tech
27
- @license GPLv3 http://www.gnu.org/licenses/gpl-3.0.en.html
28
-
29
- // · ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~
30
- // ·
31
- */
32
-
33
-
34
- // ·
35
- import application from "Lesli/vue/public"
36
-
37
-
38
- // ·
39
- application({
40
-
41
- data(){
42
- return {
43
- translations: {},
44
- password_uppercase: 0,
45
- password_symbol: 0,
46
- password_number: 0,
47
- telephone_code: "",
48
- telephone_codes: null,
49
- sign_up: {
50
- email: "",
51
- password: "",
52
- password_confirmation: '',
53
- // first_name: null,
54
- // last_name: null,
55
- // telephone: null,
56
- },
57
- progress_bar_active: false,
58
- notification: {
59
- show: false,
60
- message: '',
61
- type: 'is-danger'
62
- }
63
-
64
- }
65
- },
66
- mounted() {
67
- this.$refs.email.focus()
68
- },
69
- methods: {
70
-
71
- postRegistration(event) {
72
-
73
- this.notification.show = false;
74
-
75
- event.preventDefault();
76
-
77
- const user = this.validateFields()
78
-
79
- this.http.post(this.url.to(), user).then(response => {
80
-
81
- //setTimeout(() => { this.url.go("/login") }, 5000)
82
-
83
- }).catch((err)=>{
84
- this.showNotification(err.message)
85
- })
86
-
87
- },
88
-
89
- typing() {
90
- this.notification.message= ""
91
- this.notification.show= false
92
- this.notification.type= "default"
93
- this.verifyPasswords()
94
- },
95
-
96
- showNotification(message,type = "danger") {
97
- this.notification.message = message
98
- this.notification.type = type
99
- this.notification.show = true
100
- },
101
-
102
- verifyPasswords() {
103
-
104
- this.password_uppercase = 0
105
- this.password_number = 0
106
- this.password_symbol = 0
107
-
108
- if (this.sign_up.password.length <= 0) {
109
- return
110
- }
111
-
112
- if (this.sign_up.password.search(/[A-Z]/) < 0) {
113
- this.password_uppercase = 1
114
- } else {
115
- this.password_uppercase = 2
116
- }
117
-
118
- if (this.sign_up.password.search(/[0-9]/) < 0) {
119
- this.password_number = 1
120
- } else {
121
- this.password_number = 2
122
- }
123
-
124
- if (this.sign_up.password.search(/[!#$%&]/) < 0) {
125
- this.password_symbol = 1
126
- } else {
127
- this.password_symbol = 2
128
- }
129
-
130
- },
131
-
132
- validateFields() {
133
-
134
- // · copy object without reference
135
- const user = JSON.parse(JSON.stringify(this.sign_up))
136
-
137
- if (user.password_confirmation == "") {
138
- user.password_confirmation = user.password
139
- }
140
-
141
- return user
142
- }
143
- }
144
- })
data/lib/vue/sessions.js DELETED
@@ -1,148 +0,0 @@
1
- /*
2
- Lesli
3
-
4
- Copyright (c) 2023, Lesli Technologies, S. A.
5
-
6
- This program is free software: you can redistribute it and/or modify
7
- it under the terms of the GNU General Public License as published by
8
- the Free Software Foundation, either version 3 of the License, or
9
- (at your option) any later version.
10
-
11
- This program is distributed in the hope that it will be useful,
12
- but WITHOUT ANY WARRANTY; without even the implied warranty of
13
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14
- GNU General Public License for more details.
15
-
16
- You should have received a copy of the GNU General Public License
17
- along with this program. If not, see http://www.gnu.org/licenses/.
18
-
19
- Lesli · Ruby on Rails SaaS Development Framework.
20
-
21
- Made with ♥ by LesliTech
22
- Building a better future, one line of code at a time.
23
-
24
- @contact hello@lesli.tech
25
- @website https://www.lesli.tech
26
- @license GPLv3 http://www.gnu.org/licenses/gpl-3.0.en.html
27
-
28
- // · ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~
29
- // ·
30
- */
31
-
32
-
33
- // ·
34
- import application from "Lesli/vue/public"
35
-
36
-
37
- // ·
38
- application({
39
-
40
- data(){
41
- return {
42
- loading: false,
43
- sign_in: {
44
- email: "",
45
- password: ""
46
- },
47
- notification: {
48
- message: "",
49
- show: false,
50
- type: "default"
51
- },
52
- errors: []
53
- }
54
- },
55
- mounted() {
56
- this.$refs?.email?.focus()
57
-
58
- if (lesli_application_development) {
59
- this.sign_in.email = "hello@lesli.tech"
60
- this.sign_in.password = "Tardis2024$"
61
- }
62
- },
63
- methods: {
64
-
65
- togglePasswordInput() {
66
- if (this.$refs.password.type === "password") {
67
- this.$refs.password.type = "text";
68
- } else {
69
- this.$refs.password.type = "password";
70
- }
71
- },
72
-
73
- validateEmail() {
74
- if (/^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,3})+$/.test(this.sign_in.email)) {
75
- console.log("error")
76
- }
77
- },
78
-
79
- build_redirect_url(default_path = null) {
80
-
81
- // redirect to the root of the domain by default
82
- let redirect_url = "/"
83
-
84
- try {
85
-
86
- // search for a redirection route in the url params
87
- redirect_url = Object.fromEntries(new URLSearchParams(window.location.search)).r
88
-
89
- } catch (error) {
90
-
91
- }
92
-
93
- // redirect to the default path if:
94
- // - there is no query params with redirection
95
- if (!redirect_url && default_path) {
96
- redirect_url = default_path
97
- }
98
-
99
- // redirect to the root if:
100
- // - error parsing redirection route
101
- // - there is no query params with redirection
102
- if (!redirect_url) {
103
- redirect_url = "/"
104
- }
105
-
106
- return redirect_url
107
-
108
- },
109
-
110
- postLogin(event) {
111
-
112
- this.loading = true
113
-
114
- event.preventDefault();
115
-
116
- this.notification.show = false
117
-
118
- let data = {
119
- user: {
120
- email: this.sign_in.email.toLowerCase(),
121
- password: this.sign_in.password
122
- }
123
- };
124
-
125
- this.http.post("/login", data).then(response => {
126
- this.url.go(this.build_redirect_url(response.default_path))
127
- }).catch(error => {
128
- this.showNotification(error.message)
129
- }).finally(() => {
130
- this.loading = false
131
- })
132
-
133
- },
134
-
135
- typing() {
136
- this.notification.message= ""
137
- this.notification.show= false
138
- this.notification.type= "default"
139
- },
140
-
141
- showNotification(message, type="danger"){
142
- this.notification.message = message;
143
- this.notification.type = type;
144
- this.notification.show = true;
145
- }
146
-
147
- }
148
- })
@@ -1,43 +0,0 @@
1
- /*
2
- Copyright (c) 2022, all rights reserved.
3
-
4
- All the information provided by this platform is protected by international laws related to
5
- industrial property, intellectual property, copyright and relative international laws.
6
- All intellectual or industrial property rights of the code, texts, trade mark, design,
7
- pictures and any other information belongs to the owner of this platform.
8
-
9
- Without the written permission of the owner, any replication, modification,
10
- transmission, publication is strictly forbidden.
11
-
12
- For more information read the license file including with this software.
13
-
14
- // · ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~
15
- // ·
16
- */
17
-
18
-
19
- // ·
20
- import { defineStore } from "pinia"
21
-
22
-
23
- // ·
24
- export const useSessions = defineStore("shield.sessions", {
25
- state: () => {
26
- return {
27
- sessions: {
28
- pagination: {},
29
- records: {}
30
- }
31
- }
32
- },
33
- actions: {
34
-
35
- get() {
36
- this.http.get(this.url.shield("sessions")).then(result => {
37
- this.sessions = result
38
- }).catch(error => {
39
- console.log(error)
40
- })
41
- }
42
- }
43
- })
@@ -1,162 +0,0 @@
1
- {
2
- "en": {
3
- "lesli": {
4
- "application": {
5
- "navigation_logout": "Logout",
6
- "navigation_my_profile": "My profile"
7
- },
8
- "dashboards": {
9
- "column_default": "Default",
10
- "column_name": "Name",
11
- "title": "Dashboards",
12
- "view_add_component": "Add component"
13
- },
14
- "shared": {
15
- "button_add_new": "Add new",
16
- "button_delete": "Delete",
17
- "button_edit": "Edit",
18
- "button_list": "List",
19
- "button_reload": "Reload",
20
- "button_save": "Save",
21
- "button_settings": "Settings",
22
- "button_show": "Show",
23
- "message_operation_error": "Operation failed. Please try again.",
24
- "message_operation_success": "Operation completed successfully",
25
- "toolbar_search": "Search...",
26
- "view_discussions": "Discussions",
27
- "view_files": "Files",
28
- "view_quick_actions": "Quick actions",
29
- "view_status_active": "Active",
30
- "view_status_inactive": "Inactive"
31
- }
32
- }
33
- },
34
- "es": {
35
- "lesli": {
36
- "application": {
37
- "navigation_logout": "Cerrar sesión",
38
- "navigation_my_profile": "Mi perfil"
39
- },
40
- "dashboards": {
41
- "column_default": "Default",
42
- "column_name": "Nombre",
43
- "title": "Dashboards",
44
- "view_add_component": "Agregar componente"
45
- },
46
- "shared": {
47
- "button_add_new": "Agregar nuevo",
48
- "button_delete": "Eliminar",
49
- "button_edit": "Editar",
50
- "button_list": "Lista",
51
- "button_reload": "Recargar",
52
- "button_save": "Guardar",
53
- "button_settings": "Configuración",
54
- "button_show": "Ver",
55
- "message_operation_error": "Operación fallida. Por favor, inténtelo de nuevo.",
56
- "message_operation_success": "Operacion realizada satisfactoriamente",
57
- "toolbar_search": "Buscar...",
58
- "view_discussions": "Discusiones",
59
- "view_files": "Archivos",
60
- "view_quick_actions": "Acciones rapidas",
61
- "view_status_active": "Activo",
62
- "view_status_inactive": "Inactivo"
63
- }
64
- }
65
- },
66
- "fr": {
67
- "lesli": {
68
- "application": {
69
- "navigation_logout": ":lesli.application.navigation_logout:",
70
- "navigation_my_profile": ":lesli.application.navigation_my_profile:"
71
- },
72
- "dashboards": {
73
- "column_default": ":lesli.dashboards.column_default:",
74
- "column_name": ":lesli.dashboards.column_name:",
75
- "title": ":lesli.dashboards.title:",
76
- "view_add_component": ":lesli.dashboards.view_add_component:"
77
- },
78
- "shared": {
79
- "button_add_new": ":lesli.shared.button_add_new:",
80
- "button_delete": ":lesli.shared.button_delete:",
81
- "button_edit": ":lesli.shared.button_edit:",
82
- "button_list": ":lesli.shared.button_list:",
83
- "button_reload": ":lesli.shared.button_reload:",
84
- "button_save": ":lesli.shared.button_save:",
85
- "button_settings": ":lesli.shared.button_settings:",
86
- "button_show": ":lesli.shared.button_show:",
87
- "message_operation_error": ":lesli.shared.message_operation_error:",
88
- "message_operation_success": ":lesli.shared.message_operation_success:",
89
- "toolbar_search": ":lesli.shared.toolbar_search:",
90
- "view_discussions": ":lesli.shared.view_discussions:",
91
- "view_files": ":lesli.shared.view_files:",
92
- "view_quick_actions": ":lesli.shared.view_quick_actions:",
93
- "view_status_active": ":lesli.shared.view_status_active:",
94
- "view_status_inactive": ":lesli.shared.view_status_inactive:"
95
- }
96
- }
97
- },
98
- "it": {
99
- "lesli": {
100
- "application": {
101
- "navigation_logout": ":lesli.application.navigation_logout:",
102
- "navigation_my_profile": ":lesli.application.navigation_my_profile:"
103
- },
104
- "dashboards": {
105
- "column_default": ":lesli.dashboards.column_default:",
106
- "column_name": ":lesli.dashboards.column_name:",
107
- "title": ":lesli.dashboards.title:",
108
- "view_add_component": ":lesli.dashboards.view_add_component:"
109
- },
110
- "shared": {
111
- "button_add_new": ":lesli.shared.button_add_new:",
112
- "button_delete": ":lesli.shared.button_delete:",
113
- "button_edit": ":lesli.shared.button_edit:",
114
- "button_list": ":lesli.shared.button_list:",
115
- "button_reload": ":lesli.shared.button_reload:",
116
- "button_save": ":lesli.shared.button_save:",
117
- "button_settings": ":lesli.shared.button_settings:",
118
- "button_show": ":lesli.shared.button_show:",
119
- "message_operation_error": ":lesli.shared.message_operation_error:",
120
- "message_operation_success": ":lesli.shared.message_operation_success:",
121
- "toolbar_search": ":lesli.shared.toolbar_search:",
122
- "view_discussions": ":lesli.shared.view_discussions:",
123
- "view_files": ":lesli.shared.view_files:",
124
- "view_quick_actions": ":lesli.shared.view_quick_actions:",
125
- "view_status_active": ":lesli.shared.view_status_active:",
126
- "view_status_inactive": ":lesli.shared.view_status_inactive:"
127
- }
128
- }
129
- },
130
- "pt": {
131
- "lesli": {
132
- "application": {
133
- "navigation_logout": ":lesli.application.navigation_logout:",
134
- "navigation_my_profile": ":lesli.application.navigation_my_profile:"
135
- },
136
- "dashboards": {
137
- "column_default": ":lesli.dashboards.column_default:",
138
- "column_name": ":lesli.dashboards.column_name:",
139
- "title": ":lesli.dashboards.title:",
140
- "view_add_component": ":lesli.dashboards.view_add_component:"
141
- },
142
- "shared": {
143
- "button_add_new": ":lesli.shared.button_add_new:",
144
- "button_delete": ":lesli.shared.button_delete:",
145
- "button_edit": ":lesli.shared.button_edit:",
146
- "button_list": ":lesli.shared.button_list:",
147
- "button_reload": ":lesli.shared.button_reload:",
148
- "button_save": ":lesli.shared.button_save:",
149
- "button_settings": ":lesli.shared.button_settings:",
150
- "button_show": ":lesli.shared.button_show:",
151
- "message_operation_error": ":lesli.shared.message_operation_error:",
152
- "message_operation_success": ":lesli.shared.message_operation_success:",
153
- "toolbar_search": ":lesli.shared.toolbar_search:",
154
- "view_discussions": ":lesli.shared.view_discussions:",
155
- "view_files": ":lesli.shared.view_files:",
156
- "view_quick_actions": ":lesli.shared.view_quick_actions:",
157
- "view_status_active": ":lesli.shared.view_status_active:",
158
- "view_status_inactive": ":lesli.shared.view_status_inactive:"
159
- }
160
- }
161
- }
162
- }