This commit is contained in:
2020-12-18 22:54:45 +00:00
parent 3f66d8ad21
commit 2119198515
3 changed files with 5 additions and 4 deletions

View File

@@ -126,7 +126,7 @@ namespace AyaNova.Api.Controllers
else
return BadRequest(new ApiErrorResponse(biz.Errors));
}
return Ok(ApiOkResponse.Response(new { Concurrency = o.Concurrency }));;
return Ok(ApiOkResponse.Response(new { Concurrency = o.Concurrency })); ;
}
/// <summary>

View File

@@ -326,7 +326,7 @@ namespace AyaNova.Util
await EraseTableAsync("apm", conn);
await EraseTableAsync("apmtemplateitem", conn);
await EraseTableAsync("apmtemplate", conn);
await EraseTableAsync("apurchaseorder", conn);
await EraseTableAsync("aquoteitem", conn);
await EraseTableAsync("aquote", conn);
@@ -360,6 +360,8 @@ namespace AyaNova.Util
await EraseTableAsync("anotifysubscription", conn);
await EraseTableAsync("amemo", conn);
await EraseTableAsync("areminder", conn);//depends on User
await EraseTableAsync("areview", conn);//depends on User
//Delete from user options table first
@@ -395,7 +397,7 @@ namespace AyaNova.Util
apiServerState.ResumePriorState();
_log.LogInformation("Database erase completed");
_log.LogInformation("Database erase completed");
}

View File

@@ -1134,7 +1134,6 @@ namespace AyaNova.Util
log.LogError(err);
throw new System.Exception(err);
}
}
}
}