customer docs
This commit is contained in:
@@ -2,7 +2,10 @@
|
|||||||
|
|
||||||
TEST IMPORT FILE OPEN ON iPad device as the file input accept type may not work with apple
|
TEST IMPORT FILE OPEN ON iPad device as the file input accept type may not work with apple
|
||||||
|
|
||||||
get back to docs completion
|
Docs completion
|
||||||
|
search for 
|
||||||
|
less than 30 so that's good! :)
|
||||||
|
|
||||||
|
|
||||||
start in on QBI
|
start in on QBI
|
||||||
minimum viable product, just something that works
|
minimum viable product, just something that works
|
||||||
|
|||||||
@@ -1,3 +1,2 @@
|
|||||||
# CUSTOMER-CSR
|
# Service requests
|
||||||
|
|
||||||

|
|
||||||
|
|||||||
BIN
docs/8.0/ayanova/docs/img/cust-csr-data-table.png
Normal file
BIN
docs/8.0/ayanova/docs/img/cust-csr-data-table.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 54 KiB |
@@ -63,7 +63,7 @@ namespace AyaNova
|
|||||||
{
|
{
|
||||||
options.RouteBasePath = "/profiler";
|
options.RouteBasePath = "/profiler";
|
||||||
//in testing only ignorepaths was reliable and worked and docs say it prevents any profiling at all
|
//in testing only ignorepaths was reliable and worked and docs say it prevents any profiling at all
|
||||||
options.IgnorePath("/auth").IgnorePath("/license").IgnorePath("/user").IgnorePath("/docs");
|
options.IgnorePath("/auth").IgnorePath("/license").IgnorePath("/user").IgnorePath("/docs").IgnorePath("/custdocs");
|
||||||
options.ResultsAuthorize = request =>
|
options.ResultsAuthorize = request =>
|
||||||
{
|
{
|
||||||
if (request.HttpContext.Items["AY_PROFILER_ALLOWED"] != null)
|
if (request.HttpContext.Items["AY_PROFILER_ALLOWED"] != null)
|
||||||
@@ -644,7 +644,7 @@ namespace AyaNova
|
|||||||
//to support html5 pushstate routing in spa
|
//to support html5 pushstate routing in spa
|
||||||
//this ensures that a refresh at the client will not 404 but rather force back to the index.html app page and then handled internally by the client
|
//this ensures that a refresh at the client will not 404 but rather force back to the index.html app page and then handled internally by the client
|
||||||
await next();
|
await next();
|
||||||
if (!context.Response.HasStarted && !context.Request.Path.Value.StartsWith("/api") && context.Request.Path.Value != "/docs" && context.Response.StatusCode == 404 && !Path.HasExtension(context.Request.Path.Value))
|
if (!context.Response.HasStarted && !context.Request.Path.Value.StartsWith("/api") && context.Request.Path.Value != "/docs" && context.Request.Path.Value != "/custdocs" && context.Response.StatusCode == 404 && !Path.HasExtension(context.Request.Path.Value))
|
||||||
{
|
{
|
||||||
context.Request.Path = "/index.html";
|
context.Request.Path = "/index.html";
|
||||||
context.Response.StatusCode = 200;
|
context.Response.StatusCode = 200;
|
||||||
|
|||||||
Reference in New Issue
Block a user