diff --git a/devdocs/todo.txt b/devdocs/todo.txt index 6636fefc..bccc0b93 100644 --- a/devdocs/todo.txt +++ b/devdocs/todo.txt @@ -19,6 +19,7 @@ CODING WORK +++++++++++ Overall plan for now: anything standing in the way of making the initial client shell UI needs to be done first, everything else can wait + - Event log make sure can set the date and time to prior values for importing - v7importusers - User route and controller and biz object - v7import once have users imported then proper attribution in eventlog of creator,modifier, created,modified diff --git a/server/AyaNova/Startup.cs b/server/AyaNova/Startup.cs index 7c879231..63eff61f 100644 --- a/server/AyaNova/Startup.cs +++ b/server/AyaNova/Startup.cs @@ -359,7 +359,7 @@ namespace AyaNova // ******************** TESTING WIPE DB ***************************** // //Set this to true to wipe the db and reinstall a trial license and re-seed the data - var TESTING_REFRESH_DB = false; + var TESTING_REFRESH_DB = true; #if (DEBUG) //TESTING diff --git a/server/AyaNova/biz/ImportAyaNova7Biz.cs b/server/AyaNova/biz/ImportAyaNova7Biz.cs index bb610396..92c2de53 100644 --- a/server/AyaNova/biz/ImportAyaNova7Biz.cs +++ b/server/AyaNova/biz/ImportAyaNova7Biz.cs @@ -86,6 +86,9 @@ namespace AyaNova.Biz //Pass off the JSON data from the import file into the import job item by item + //USERS - Import first so all other objects can be properly attributed in event log + + //IMPORT REGIONS AS TAGS await DoImport("GZTW.AyaNova.BLL.Region", AyaType.Tag, job.GId, importMap, importFileName, zipEntries);