alchemy-devise 8.1.0 → 8.1.1
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 +4 -4
- data/CHANGELOG.md +12 -0
- data/app/views/alchemy/admin/users/_resource_table.html.erb +1 -3
- data/lib/alchemy/devise/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: b9b2649108be8e4999deee326d2222e5f799fd5eda0ad47f53ef96340b58fa2a
|
|
4
|
+
data.tar.gz: 8ea2edc4830c429a18657ebb0d7baf05710b663c96ceac0367a443f0230ebe6a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 4c8830ceeb4119a108cceda886f14f6b77f2d8a0cf4c8bf3e458b00a3a0a90e6c73a4e06f1ff6f81c30a53a0f45ec67667b848f60fba8032cd78a8234005d07c
|
|
7
|
+
data.tar.gz: 262d849e42f6ea3993fd2af820ff987e832952e3c04d38630d290fa081bfc0964e9b8a7b495626f1bab5fb77f9e5be8b653f88711cb661face3511d0c04dd65d
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 8.1.1 (2026-03-25)
|
|
4
|
+
|
|
5
|
+
<!-- Release notes generated using configuration in .github/release.yml at 8.1-stable -->
|
|
6
|
+
|
|
7
|
+
## What's Changed
|
|
8
|
+
### Other Changes
|
|
9
|
+
* [8.1-stable] Merge pull request #256 from blish-guenzler/fix-double-pagination by @alchemycms-bot[bot] in https://github.com/AlchemyCMS/alchemy-devise/pull/258
|
|
10
|
+
* [8.1-stable] Merge pull request #259 from blish-guenzler/fix-login-link-to-dialog by @alchemycms-bot[bot] in https://github.com/AlchemyCMS/alchemy-devise/pull/261
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
**Full Changelog**: https://github.com/AlchemyCMS/alchemy-devise/compare/v8.1.0...v8.1.1
|
|
14
|
+
|
|
3
15
|
## 8.1.0 (2026-02-02)
|
|
4
16
|
|
|
5
17
|
<!-- Release notes generated using configuration in .github/release.yml at 8.1-stable -->
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
<%= render_icon(:user, style: user.logged_in? ? "solid" : "regular") %>
|
|
4
4
|
<% end %>
|
|
5
5
|
<% table.column :login, sortable: true do |user| %>
|
|
6
|
-
<% if can?(:edit, user) %>
|
|
6
|
+
<% if can?(:edit, user) && user.login %>
|
|
7
7
|
<%= link_to_dialog user.login,
|
|
8
8
|
alchemy.edit_admin_user_path(user), {
|
|
9
9
|
title: Alchemy.t(:edit_user),
|
|
@@ -30,5 +30,3 @@
|
|
|
30
30
|
<% table.delete_button tooltip: Alchemy.t(:delete_user), confirm_message: Alchemy.t(:confirm_to_delete_user) %>
|
|
31
31
|
<% table.edit_button tooltip: Alchemy.t(:edit_user), dialog_size: "430x500" %>
|
|
32
32
|
<% end %>
|
|
33
|
-
|
|
34
|
-
<%= paginate @users, theme: "alchemy" %>
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: alchemy-devise
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 8.1.
|
|
4
|
+
version: 8.1.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Thomas von Deyen
|
|
@@ -265,7 +265,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
265
265
|
- !ruby/object:Gem::Version
|
|
266
266
|
version: '0'
|
|
267
267
|
requirements: []
|
|
268
|
-
rubygems_version: 4.0.
|
|
268
|
+
rubygems_version: 4.0.6
|
|
269
269
|
specification_version: 4
|
|
270
270
|
summary: Devise based user authentication for AlchemyCMS.
|
|
271
271
|
test_files: []
|