thecore_auth_commons 3.5.9 → 3.5.10

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
  SHA256:
3
- metadata.gz: 3885444cdc2c5e2e638d8585213f34e4d4e8f4fc41f942c0a469fa9155a18ecc
4
- data.tar.gz: fd78356964cc040522a0cb98a3dab0283e9b521e4608a568c3672978fadc6521
3
+ metadata.gz: 39f2cb5668bc11369267ca6b32ac670471a818385e95c17444174ca28b50cfa4
4
+ data.tar.gz: 1571d704b2a3cd179263c4975bf5a4b8aa41b1848be48310044ead5453fe3043
5
5
  SHA512:
6
- metadata.gz: 73c78777bb6762335f7f20035e3e0899781599ffd0d6f699ddbca87606a0c40cc4028551aa79baf5f85b850dbeaa3c6acc3a168fc7392768dfe2bcd3dc1484a7
7
- data.tar.gz: 1bc6158418ffe00fc1ae55a7d02bc96e7eef2d05e9a0b1cc34dbf5c0ff7a1636bbb2a8a206e35073d262c10e1ad2ddb17d5ffdec8bd6b2913b3e8e892894a079
6
+ metadata.gz: 3971e2c5a13789d707cf7604fc7bd12bfbe70eb968c4dd30eafb0162912ad5048b571de22ec028688f7d0731d9d390fbb4c072a713ffcaa691c272f959c663cb
7
+ data.tar.gz: 52715047b97a6dd859a5957c1265f3acabeed7ade11f019429c96c93824c0bf7c88030253c3203f869e55e890fdc29b2d50f54f39e8c51e01c5982cd081726dd
@@ -1,23 +1,26 @@
1
1
  en:
2
2
  devise:
3
3
  sessions:
4
- invalid: "Credential or password are invalid."
4
+ invalid: "Invalid credentials or password."
5
5
  user:
6
- invalid: "Credential or password are invalid."
6
+ invalid: "Invalid credentials or password."
7
7
  error:
8
8
  messages:
9
9
  password_requires_letters_and_numbers: "must contain at least one letter and one number"
10
10
  password_requires_special_characters: "must contain at least one special character"
11
11
  validation:
12
12
  errors:
13
- password_and_confirm_must_be_the_same: "passwords must be the same"
13
+ password_and_confirm_must_be_the_same: "passwords must match"
14
14
  password_must_contain_uppercase_lowercase_number_special_character: "must contain at least one uppercase letter, one lowercase letter, one number and one special character"
15
15
  cannot_unadmin_last_admin: "at least one user must be an administrator"
16
- cannot_unlock_last_admin: "at least one user must be unlocked"
16
+ cannot_unlock_last_admin: "at least one user must remain unlocked"
17
17
  cannot_delete_last_admin: "at least one user must be an administrator"
18
18
  cannot_delete_last_role: "at least one role must exist"
19
19
  activerecord:
20
20
  models:
21
+ ldap_server:
22
+ one: LDAP Server
23
+ other: LDAP Servers
21
24
  user:
22
25
  one: User
23
26
  other: Users
@@ -28,30 +31,40 @@ en:
28
31
  one: Permission
29
32
  other: Permissions
30
33
  attributes:
34
+ ldap_server:
35
+ host: Host
36
+ port: Port
37
+ base_dn: Base DN
38
+ admin_user: Admin User
39
+ admin_password: Admin Password
40
+ priority: Priority
41
+ use_ssl: Use SSL?
42
+ auth_field: Authentication Field
31
43
  user:
32
44
  email: Email
33
45
  code: Code
34
46
  roles: Roles
35
47
  admin: Administrator?
36
- created_at: Creation Date
48
+ created_at: Created On
37
49
  locked: Locked?
38
50
  third_party: Third Party?
39
51
  password: Password
40
52
  password_confirmation: Confirm Password
53
+ auth_source: Authentication Source
41
54
  role:
42
55
  users: Users
43
56
  name: Role
44
57
  permissions: Permissions
45
- created_at: Creation Date
46
- updated_at: Last Update
58
+ created_at: Created On
59
+ updated_at: Last Updated
47
60
  permission:
48
61
  predicate: Predicate
49
62
  action: Action
50
63
  model: Model
51
64
  descriptions:
52
- user: In this section of the application, you can search the list of users in different ways using filters or sort the list by various fields.
53
- role: In this section, you can create roles to use in the RBAC managed by the abilities files, to define CRUD and other permissions.
54
- permission: The predicate defines whether it is a permission to do or not do something, the action defines what can or cannot be done, while the model defines on whom.
65
+ user: In this section you can search and filter the list of users, or sort it by various fields.
66
+ role: In this section you can create roles for the RBAC system managed by the abilities files, to define CRUD and other permissions.
67
+ permission: The predicate defines whether it is a permission to allow or deny an action; the action defines what can or cannot be done; the model defines the resource it applies to.
55
68
  permissions:
56
69
  predicates:
57
70
  can: Can
@@ -1,3 +1,3 @@
1
1
  module ThecoreAuthCommons
2
- VERSION = "3.5.9".freeze
2
+ VERSION = "3.5.10".freeze
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: thecore_auth_commons
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.5.9
4
+ version: 3.5.10
5
5
  platform: ruby
6
6
  authors:
7
7
  - Gabriele Tassoni