From 4042c37112789dbd616ca2d8680977f426db7823 Mon Sep 17 00:00:00 2001 From: Tanner Collin Date: Wed, 26 Jan 2022 04:25:28 +0000 Subject: [PATCH] Update app version --- apiserver/apiserver/settings.py | 2 +- webclient/src/App.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/apiserver/apiserver/settings.py b/apiserver/apiserver/settings.py index 9a596b5..b44399c 100644 --- a/apiserver/apiserver/settings.py +++ b/apiserver/apiserver/settings.py @@ -282,7 +282,7 @@ DEFAULT_FROM_EMAIL = 'Protospace Portal ' if DEBUG: logger.info('Debug mode ON') logger.info('Test logging for each thread') -APP_VERSION = 1 # TODO: automate this +APP_VERSION = 2 # TODO: automate this #import logging_tree #logging_tree.printout() diff --git a/webclient/src/App.js b/webclient/src/App.js index afaa378..bf03fb6 100644 --- a/webclient/src/App.js +++ b/webclient/src/App.js @@ -27,7 +27,7 @@ import { PasswordReset, ConfirmReset } from './PasswordReset.js'; import { NotFound, PleaseLogin } from './Misc.js'; import { Footer } from './Footer.js'; -const APP_VERSION = 1; // TODO: automate this +const APP_VERSION = 2; // TODO: automate this function App() { const [token, setToken] = useState(localStorage.getItem('token', ''));