strongmind-auth 1.0.14 → 1.0.15
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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b1a86df146b5b48ff39388a216c4c6f04c64af68d805d181a406dbb50166c141
|
4
|
+
data.tar.gz: c4993a26e025d3de3bfc756fe3e1d845a1ae802a0ed3231e112f0c43b2a922d4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f5eebbdeea7157d04ab238a5978a2a5ba443d7527521f7321bbf8cc5dfef3561a7f23f2918284896af902ab0191dc7666249f49b987d4b919b90977b32bf7d60
|
7
|
+
data.tar.gz: 840b288e4be11809e7f528a1df36a803e5c108a2375ba6ac8d85a3740f8faa49e88b0f78b6d16d5dac8ef3abb06bb8baba558174b71b056a6f7e42e53282c8ae
|
@@ -20,7 +20,7 @@ module Strongmind
|
|
20
20
|
before_action :authenticate_user!
|
21
21
|
before_action :fetch_common_nav
|
22
22
|
|
23
|
-
rescue_from Exceptions::RefreshTokenExpiredError do
|
23
|
+
rescue_from Strongmind::Exceptions::RefreshTokenExpiredError do
|
24
24
|
current_user&.invalidate_all_sessions!
|
25
25
|
redirect_to \"#{ENV['IDENTITY_BASE_URL']}/connect/endsession\", headers: {
|
26
26
|
'Content-Type' => 'application/json'
|
@@ -30,7 +30,7 @@ module Strongmind
|
|
30
30
|
# Implement the list of menu items for the application
|
31
31
|
# def menu_items
|
32
32
|
# [
|
33
|
-
# { name: 'Home', icon: 'fa-solid fa-house',
|
33
|
+
# { name: 'Home', icon: 'fa-solid fa-house', url: root_path }
|
34
34
|
# ]
|
35
35
|
# end
|
36
36
|
|