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: bc46e88e501287e0a5cc68e2955f02bdbc57846ddb57d857c9bb4a059d7b575e
4
- data.tar.gz: 2c0975de9ae802db081741d997486478203fd53664a099711842fbf5ce94054b
3
+ metadata.gz: b1a86df146b5b48ff39388a216c4c6f04c64af68d805d181a406dbb50166c141
4
+ data.tar.gz: c4993a26e025d3de3bfc756fe3e1d845a1ae802a0ed3231e112f0c43b2a922d4
5
5
  SHA512:
6
- metadata.gz: 1ed12a69efd46d42d554b2f1943de7c4915889a24b4aa589acf9649fab081c429bd0e9b0e655c027f3f7921df3da25cdafbae82b7887ed765b33d967f1eec0f7
7
- data.tar.gz: a0a0d134a2ec866ca987498cb10c766f9b746c60dcf852d028cec7cd70b7b326e2c5a3642fde99fcfac7c20d397c609a3ff8e686c756d7e7018ddc6a2620696b
6
+ metadata.gz: f5eebbdeea7157d04ab238a5978a2a5ba443d7527521f7321bbf8cc5dfef3561a7f23f2918284896af902ab0191dc7666249f49b987d4b919b90977b32bf7d60
7
+ data.tar.gz: 840b288e4be11809e7f528a1df36a803e5c108a2375ba6ac8d85a3740f8faa49e88b0f78b6d16d5dac8ef3abb06bb8baba558174b71b056a6f7e42e53282c8ae
@@ -26,7 +26,7 @@ module StrongMindNav
26
26
 
27
27
  def menu_items
28
28
  [
29
- { name: 'Home', icon: 'fa-solid fa-house', path_method: :root_path }
29
+ { name: 'Home', icon: 'fa-solid fa-house', url: root_path }
30
30
  ]
31
31
  end
32
32
 
@@ -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', path_method: :root_path }
33
+ # { name: 'Home', icon: 'fa-solid fa-house', url: root_path }
34
34
  # ]
35
35
  # end
36
36
 
@@ -1,5 +1,5 @@
1
1
  module Strongmind
2
2
  module Auth
3
- VERSION = "1.0.14"
3
+ VERSION = "1.0.15"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: strongmind-auth
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.14
4
+ version: 1.0.15
5
5
  platform: ruby
6
6
  authors:
7
7
  - Team Belding