rhino_project_core 0.25.0.beta.7 → 0.25.0.beta.8

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: 67d331f35ca7900c676833921a4c3c9b83ed6c0a149bd9d4a78dba56ac479038
4
- data.tar.gz: e74e59d7956371865cd262317657fa0af068533ac026a3afadc8fde07fc98a63
3
+ metadata.gz: 21b1b660202728f2f2df941f9211039554e46142398f77acbf3f3229f3ece6bc
4
+ data.tar.gz: 9423231186ef1381869c95d49973a7cc973ec8d9e1d97c0e5a0fe92ec9c80eea
5
5
  SHA512:
6
- metadata.gz: f49842076385e160656416bc26362604607aa62558418739656b4f7fe547ba010086bb1ada4ce162080075da1ae190bbb9b53e799b7b2659040ec046ea57cba3
7
- data.tar.gz: 75f62ac9d33154562dbfbda0df47681e3bcf4e844ed93b2d12bbe860da02c5db1e8c882d892ae5f79d44ad67a0ae5c1cecbaf2e2737514c880500869cc322277
6
+ metadata.gz: 60d91f16116b4618e1c4886f727f491931c70bad8c3eadfb413d0e45774713c50a6dd3adc5dacb2b3ec7198e0e961ecaff17e7f7895363e98065ee5321197fc0
7
+ data.tar.gz: b269cdeda58ab9395c41d393e9f81994b0f73542c698ce70bc15e3519d81218a154c5a01c9c0a758f753424024b2701f1cb9a43c7855cedef940c1e826090ebb
@@ -5,7 +5,7 @@ module DeviseTokenAuth::ConfirmationsController::Extensions
5
5
  def show
6
6
  super
7
7
  rescue StandardError
8
- redirect_to ENV["ROOT_URL"]
8
+ redirect_to ENV["RHINO_APP_URL"]
9
9
  end
10
10
  end
11
11
 
@@ -4,6 +4,6 @@ class DeviseTokenAuth::PasswordsController
4
4
  # If there is an error preparing to edit the password, redirect to frontend
5
5
  # This would normally be an expired password token
6
6
  def render_edit_error
7
- redirect_to "#{ENV['ROOT_URL']}/auth/reset-password/expired"
7
+ redirect_to "#{ENV['RHINO_APP_URL']}/auth/reset-password/expired"
8
8
  end
9
9
  end
@@ -1,7 +1,7 @@
1
1
  PORT=<%= server_port %>
2
2
 
3
3
  # Server
4
- ROOT_URL=http://localhost:$PORT
4
+ RHINO_APP_URL=http://localhost:$PORT
5
5
 
6
6
  DB_NAME=<%= db_name %>
7
7
  DB_HOST=<%= db_host %>
@@ -66,6 +66,6 @@ DeviseTokenAuth.setup do |config|
66
66
  # send email, set it to true. (This is a setting for compatibility)
67
67
  # config.send_confirmation_email = true
68
68
 
69
- config.default_confirm_success_url = "#{ENV['ROOT_URL']}/auth/signin"
70
- config.default_password_reset_url = "#{ENV['ROOT_URL']}/auth/reset-password"
69
+ config.default_confirm_success_url = "#{ENV['RHINO_APP_URL']}/auth/signin"
70
+ config.default_password_reset_url = "#{ENV['RHINO_APP_URL']}/auth/reset-password"
71
71
  end
data/lib/rhino/version.rb CHANGED
@@ -10,7 +10,7 @@ module Rhino
10
10
  MAJOR = 0
11
11
  MINOR = 25
12
12
  TINY = 0
13
- PRE = "beta.7"
13
+ PRE = "beta.8"
14
14
 
15
15
  STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
16
16
  end
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rhino_project_core
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.25.0.beta.7
4
+ version: 0.25.0.beta.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - JP Rosevear
8
8
  bindir: bin
9
9
  cert_chain: []
10
- date: 2025-02-20 00:00:00.000000000 Z
10
+ date: 2025-03-03 00:00:00.000000000 Z
11
11
  dependencies:
12
12
  - !ruby/object:Gem::Dependency
13
13
  name: rails