strongmind-auth 1.0.6 → 1.0.8

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 29554b31cde55064956270ba9bd557e8390a49ec9a847ff417cd13e0983d0460
4
- data.tar.gz: 534b35f4fcfa0273ec3364b1bceca1b4e0bf9f1f99c681c21d2d489b97b861b5
3
+ metadata.gz: fe8a1065a1aaff5f3ed20999981c7201aaccc6db7e7aab98f5e775a2b1e6911d
4
+ data.tar.gz: 5d5740e266cd5ee581800f9f18ffda6d71fa5c5ceb6ff9957384ec509773eb26
5
5
  SHA512:
6
- metadata.gz: c00798ee297949194cb98ff045e46b222bcd3a5d60d244f9f78cf5ee336299c1ba19d9c1414cd2a9f14345cd8fd6372f09769bdcc928599bf610c325552ee342
7
- data.tar.gz: caeb996433c23a339c251f4617a525ead271377fa97d0d027ae87ae9a694cce1e07c596ebdd21f3fd3a2aab2e10ccbcc210cb0c8c9885a5c826d82e02ba80df8
6
+ metadata.gz: 29c1de0ced18e7d4f1d3244c725c86fc8d34b496a46c2fc265e930b0a23ba29e853407e6fafd95d7fcdb54e39a1fca6c91e540d008f19edaaff1f3ae38f6f433
7
+ data.tar.gz: 61f1111cbfab644070ffe0d3a377fa50e6043737e1a87e3420869a1502924b7a07d33a38fcb04afb37925d01984f82a88d9aeb9f012ae1f110f5edaa485d47c5
@@ -10,9 +10,11 @@ module StrongMindNav
10
10
  @top_navbar_html = navbar[:top_navbar_html]
11
11
  @bottom_navbar_html = navbar[:bottom_navbar_html]
12
12
  @theme_css = navbar[:theme_css]
13
- rescue Strongmind::CommonNavFetcher::TokenNotFoundError, Strongmind::CommonNavFetcher::UserNotFoundError
13
+ rescue Strongmind::CommonNavFetcher::TokenNotFoundError, Strongmind::CommonNavFetcher::UserNotFoundError => e
14
+ Sentry.capture_exception(e)
14
15
  render 'logins/index'
15
- rescue Faraday::TimeoutError
16
+ rescue Exception => e
17
+ Sentry.capture_exception(e)
16
18
  @top_navbar_html = render_to_string(partial: 'layouts/loading_navbar').html_safe
17
19
  end
18
20
  end
@@ -19,7 +19,7 @@ module Strongmind
19
19
  # [
20
20
  # { name: 'Home', icon: 'fa-solid fa-house', path_method: :root_path }
21
21
  # ]
22
- # end"
22
+ # end\n\n"
23
23
 
24
24
  end
25
25
  end
@@ -52,6 +52,7 @@ devise_scope :user do
52
52
  gem 'omniauth_openid_connect'
53
53
  gem 'omniauth-rails_csrf_protection'
54
54
  gem 'dotenv-rails'
55
+ gem 'sentry-rails'
55
56
 
56
57
  end
57
58
 
@@ -5,4 +5,5 @@ IDENTITY_CLIENT_SECRET=
5
5
  IDENTITY_SCOPES=
6
6
 
7
7
  IDENTITY_BASE_URL=https://devlogin.strongmind.com
8
+ SM_CENTRAL_BASE_URL=https://stage-central.strongmind.com
8
9
  APP_BASE_URL=http://localhost:3000
@@ -1,5 +1,5 @@
1
1
  module Strongmind
2
2
  module Auth
3
- VERSION = "1.0.6"
3
+ VERSION = "1.0.8"
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.6
4
+ version: 1.0.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - Team Belding