plutonium 0.59.0 → 0.60.0

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: dfbb1eb8e3b796aa9ef55595aa4fc0a475f4a5f084388f0aebd4bf76eec468ae
4
- data.tar.gz: 8b15084a3c2a0ef577cd7b88fe2ebc1666d274fd0effa28227c674c722a16b09
3
+ metadata.gz: 3fa2b8cea268efcf47ef9f1d599f0899ad89c86fb63b3bc7faa8451da9ddae14
4
+ data.tar.gz: 4c10a0e528713d73ab87012443ac6b1032c633487cf57b231bc1d956061b6aa0
5
5
  SHA512:
6
- metadata.gz: e75d7e2efadc2c1ff0bb2d57d979604fff1e7ffef6c8ecbb7635f4aeafb13716852932bfd439bc444f79404f4cf106ee203dc0d525c06b5d9d13b6536c8f82fb
7
- data.tar.gz: 548b3f3b61d032c540847982e31e7734aed74b47b4cdce1867207c49bba7b3981e0de367955d3eed2d74a679187238deb8226913b396d6714002ba6dc42b7757
6
+ metadata.gz: fdd98d0175ac22901548a4eb9dd82b52877aaec986dad07b635999a5b2a6bcccc52cc4b3034c85c3199657cd1c8c6dc496d6a8e9463b9f7de783fc504d8aa992
7
+ data.tar.gz: d59318593eb59b0976fb4a15f78b7a05a83c891ff0c2fb768610ee7ed8e6073f91812a6828b43ed19503d6b906431eb6b41b11cb5f1048c39cb2e638a277c9a5
@@ -70,7 +70,7 @@ rails generate pu:rodauth:account user [options]
70
70
 
71
71
  ### Admin account — `pu:rodauth:admin`
72
72
 
73
- Pre-configured secure admin with multi-phase login, required TOTP, recovery codes, lockout, active session tracking, audit logging, role-based access, invite interaction, and **no public signup**.
73
+ Pre-configured secure admin with multi-phase login, required TOTP, recovery codes, lockout, active session tracking, audit logging, role-based access, invite + resend-invite interactions, and **no public signup**.
74
74
 
75
75
  ```bash
76
76
  rails generate pu:rodauth:admin admin
@@ -89,6 +89,12 @@ rails generate pu:rodauth:admin admin --extra-attributes=name:string,department:
89
89
  enum :role, super_admin: 0, admin: 1
90
90
  ```
91
91
 
92
+ **Invite + resend actions.** The admin resource gets two actions:
93
+ - **Invite** — invite a new admin by email; they set their password via the verification link.
94
+ - **Resend invitation** — re-send that verification email, shown only for admins who haven't verified yet.
95
+
96
+ This is Rodauth account verification — distinct from the tenancy invitation system (see [[plutonium-tenancy]]).
97
+
92
98
  Rake task for direct admin creation (namespace is `rodauth`, task name is the account name):
93
99
 
94
100
  ```bash
data/CHANGELOG.md CHANGED
@@ -1,3 +1,9 @@
1
+ ## [0.60.0] - 2026-06-14
2
+
3
+ ### 🚀 Features
4
+
5
+ - *(generators)* Add resend-invite action to rodauth admin
6
+ - *(forms)* Form sectioning DSL (form_layout / section / ungrouped) (#61)
1
7
  ## [0.59.0] - 2026-06-13
2
8
 
3
9
  ### 🚀 Features