This commit is contained in:
4
.vscode/launch.json
vendored
4
.vscode/launch.json
vendored
@@ -40,8 +40,8 @@
|
|||||||
"env": {
|
"env": {
|
||||||
"ASPNETCORE_ENVIRONMENT": "Development",
|
"ASPNETCORE_ENVIRONMENT": "Development",
|
||||||
"AYANOVA_JWT_SECRET": "UNLICENSED5G*QQJ8#bQ7$Xr_@sXfHq4",
|
"AYANOVA_JWT_SECRET": "UNLICENSED5G*QQJ8#bQ7$Xr_@sXfHq4",
|
||||||
//"AYANOVA_LOG_LEVEL": "Info",
|
"AYANOVA_LOG_LEVEL": "Info",
|
||||||
"AYANOVA_LOG_LEVEL": "Debug",
|
//"AYANOVA_LOG_LEVEL": "Debug",
|
||||||
"AYANOVA_DEFAULT_LANGUAGE": "en",
|
"AYANOVA_DEFAULT_LANGUAGE": "en",
|
||||||
//LOCALE MUST BE en for Integration TESTING
|
//LOCALE MUST BE en for Integration TESTING
|
||||||
//"AYANOVA_PERMANENTLY_ERASE_DATABASE": "true",
|
//"AYANOVA_PERMANENTLY_ERASE_DATABASE": "true",
|
||||||
|
|||||||
@@ -8,8 +8,6 @@ eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpYXQiOiIxNTcxODU5OTU0IiwiZXhwIjoiMTU3MjQ
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
TODO: RUN data list query with debug info on and see if any EF stuff is creeping into it
|
|
||||||
|
|
||||||
|
|
||||||
TODO: DataFilter how to distinguish between filtering on specific ID value or on value column
|
TODO: DataFilter how to distinguish between filtering on specific ID value or on value column
|
||||||
- Might need to add a filter on ID type of thing maybe?
|
- Might need to add a filter on ID type of thing maybe?
|
||||||
|
|||||||
@@ -178,7 +178,10 @@ namespace AyaNova.DataList
|
|||||||
}
|
}
|
||||||
|
|
||||||
//BUILD THE PAGING LINKS PORTION
|
//BUILD THE PAGING LINKS PORTION
|
||||||
var pageLinks = new PaginationLinkBuilder(Url, routeName, null, listOptions, totalRecordCount).PagingLinksObject();
|
//var pageLinks = new PaginationLinkBuilder(Url, routeName, null, listOptions, totalRecordCount).PagingLinksObject();
|
||||||
|
//http://localhost:7575/api/v8/DataList/List?Mini=true&DataListKey=TestWidgetDataList
|
||||||
|
|
||||||
|
var pageLinks = new PaginationLinkBuilder(Url, routeName, new { DataListKey = DataListKey, Mini = listOptions.Mini }, listOptions, totalRecordCount).PagingLinksObject();
|
||||||
|
|
||||||
//BUILD THE COLUMNS RETURN PROPERTY JSON FRAGMENT
|
//BUILD THE COLUMNS RETURN PROPERTY JSON FRAGMENT
|
||||||
Newtonsoft.Json.Linq.JArray ColumnsJSON = null;
|
Newtonsoft.Json.Linq.JArray ColumnsJSON = null;
|
||||||
|
|||||||
@@ -134,7 +134,7 @@ namespace AyaNova
|
|||||||
bool LOG_SENSITIVE_DATA = false;
|
bool LOG_SENSITIVE_DATA = false;
|
||||||
|
|
||||||
#if (DEBUG)
|
#if (DEBUG)
|
||||||
LOG_SENSITIVE_DATA = true;//############################################################################
|
LOG_SENSITIVE_DATA = false;//############################################################################
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
@@ -408,7 +408,7 @@ namespace AyaNova
|
|||||||
// ******************** TESTING WIPE DB *****************************
|
// ******************** TESTING WIPE DB *****************************
|
||||||
//
|
//
|
||||||
//Set this to true to wipe the db and reinstall a trial license and re-seed the data
|
//Set this to true to wipe the db and reinstall a trial license and re-seed the data
|
||||||
var TESTING_REFRESH_DB = true;//#######################################################################################
|
var TESTING_REFRESH_DB = false;//#######################################################################################
|
||||||
|
|
||||||
#if (DEBUG)
|
#if (DEBUG)
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user