1
0
mirror of https://github.com/LaCasemate/fab-manager.git synced 2025-01-17 06:52:27 +01:00

Fix a bug: unable to modify OpenLab url for production

This commit is contained in:
Du Peng 2022-03-01 18:42:57 +01:00
parent e37cde2f0d
commit d6f5980965
2 changed files with 6 additions and 5 deletions

View File

@ -1,8 +1,9 @@
# Changelog Fab-manager
- Fix line break on home events' cards
- fix typo "projets" => "projects"
- removes dead code about OpenAPI (open_api_calls_count_tracings)
- Fix typo "projets" => "projects"
- Removes dead code about OpenAPI (open_api_calls_count_tracings)
- Fix a bug: unable to modify OpenLab url for production
## v5.3.3 2022 February 08
@ -11,7 +12,7 @@
- Fix a bug/regresion: $sce.getTrustedHtml removes all dangerous html like iframe (youtube players, ect), replaced by $sce.trustAsHtml which trusts the content, it creates a security breach but all contents are created by users to we trust them
- Fix a bug: in SubscriptionPolicy#show?, was causing an error notice, making user think that the payment was not done, but it was
- Fix a bug: destroying a project was impossible
- Fix a bug: fix non-blocking js error when there was not payment gateway set
- Fix a bug: fix non-blocking js error when there was not payment gateway set
- [TODO DEPLOY] `rails fablab:maintenance:regenerate_statistics[2020,04]`
## v5.3.2 2022 January 19
@ -62,7 +63,7 @@
- Ability to configure multiple VAT rates, per kind of invoiced item
- Ability to export the collected VAT, by rates, to a CSV file
- Refactored the extended prices' frontend code to allow future customization
- Fix a bug: the amount label in not correctly shown in the extended prices modal
- Fix a bug: the amount label in not correctly shown in the extended prices modal
- Fix a bug: `extended_prices_in_same_day` apply the extended prices to each day
## v5.2.0 2021 December 23

View File

@ -1,3 +1,3 @@
Openlab.configure do |config|
config.base_uri = Rails.application.secrets.openlab_base_uri unless Rails.env.production?
config.base_uri = Rails.application.secrets.openlab_base_uri if Rails.application.secrets.openlab_base_uri
end