This commit is contained in:
2021-10-12 15:40:14 +00:00
parent e365f2020c
commit b096dc7f4c
2 changed files with 9 additions and 5 deletions

View File

@@ -12,10 +12,13 @@
## ROUGH SCHEDULE TO GET TO BETA
Testing cases
test deploy
secuirty jwt tokens and expiration, can a user just keep working if they are set to inactive because their token hasn't expired?
should tokens refresh periodically and have a super short life?
Update front / back
test deploy
double check roles at client, the way authorizationroles.hasrole is coded makes me think it might be wrong
it only checks that the value is nonzero but in postgres I noticed it needs to compare if the resulting value equals the exact role being checked
i.e. it's not enough to go userroles & desiredrole>0 but rather userroles&desiredrole==desiredrole
@@ -756,8 +759,8 @@ MID CENTURY MODERN TUNES - https://www.allmusic.com/album/ultra-lounge-vol-14-bo
BUILD 133 CHANGES OF NOTE
- Upgraded test win64 AyaNova to use Postgres 14 which was just released
- Work order header status control, moved click detection to outer div (just like signature control) so can more easily click anywhere on it to open the work order status control for setting
- Removed User UIColor setting as it is not practical to use with the new schedule control and that was the only place it was used in v7
- Work order form, header status control, moved click detection to outer div (just like signature control) so can more easily click anywhere on it to open the work order status control for setting
- Removed User's UIColor setting as it is not practical to use with the new schedule control and that was the only place it was used in v7
- Service -> Schedule implemented (help docs available now as well)
- svc-schedule-user implemented (this is when you click on the user name and drill down from team view in svc-schedule)
- Help docs / manual, fixed unlinked docs from index, cleanup here and there
@@ -766,5 +769,6 @@ BUILD 133 CHANGES OF NOTE
- case 3999 see note
- case 4001
- case 3977 fixed
- case 4002 fixed

View File

@@ -68,7 +68,7 @@ import chartBarHorizontalControl from "./components/chart-bar-horizontal-control
//DEVELOPMENT MODE
//THIS SHOULD BE FALSE IN RELEASE
//************************************************************
const DEV_MODE = true;
const DEV_MODE = false;
//************************************************************
//**************************************************************
//**************************************************************