fixed audit event bug (could not find column value -> changed to event_value...
fixed audit event bug (could not find column value -> changed to event_value -> because value seems to be a reserved keyword
parent
1935a318
Branches
Showing
- package-lock.json 461 additions, 992 deletionspackage-lock.json
- package.json 2 additions, 2 deletionspackage.json
- pom.xml 2 additions, 2 deletionspom.xml
- src/main/java/at/ac/uibk/gitsearch/domain/PersistentAuditEvent.java 1 addition, 1 deletion...ava/at/ac/uibk/gitsearch/domain/PersistentAuditEvent.java
This diff is collapsed.
... | ... | @@ -66,7 +66,7 @@ |
"prettier:format": "prettier --write \"{,src/main/java/**/,src/test/java/**/,src/main/webapp/**/}*.{md,json,yml,html,ts,css,scss,java}\"", | ||
"protractor": "protractor src/test/javascript/protractor.conf.js ", | ||
"serve": "npm run start --", | ||
"start": "ng serve --hmr", | ||
"start": "npm install && ng build --configuration development && ng serve --hmr", | ||
"start-tls": "npm run webapp:dev-ssl", | ||
"test": "ng test --coverage --log-heap-usage -w=2", | ||
"test:watch": "npm run test -- --watch", | ||
... | ... | @@ -138,7 +138,7 @@ |
"@types/selenium-webdriver": "4.0.11", | ||
"@typescript-eslint/eslint-plugin": "5.10.0", | ||
"@typescript-eslint/parser": "5.10.0", | ||
"browser-sync": "2.27.7", | ||
"browser-sync": "^2.27.7", | ||
"browser-sync-webpack-plugin": "2.3.0", | ||
"chai": "4.2.0", | ||
"chai-as-promised": "7.1.1", | ||
... | ... |
Please register or sign in to comment