2024-06-03

This commit is contained in:
2024-06-03 07:25:11 -07:00
commit 4d23316f57
559 changed files with 15154 additions and 0 deletions

View File

@ -0,0 +1,7 @@
---
assigned: ""
progress: 0
type: "note"
---
# Get a deticated PAT from each developer

View File

@ -0,0 +1,8 @@
---
assigned: ""
progress: 0
started: "2023-05-27T14:17:47.867Z"
type: "note"
---
# Get All API

View File

@ -0,0 +1,7 @@
---
assigned: ""
progress: 0
type: "note"
---
# Get One API

View File

@ -0,0 +1,7 @@
---
assigned: ""
progress: 0
type: "note"
---
# In tab form text area to paste over Excel

View File

@ -0,0 +1,7 @@
---
assigned: ""
progress: 0
type: "note"
---
# List record that are different

View File

@ -0,0 +1,7 @@
---
assigned: ""
progress: 0
type: "note"
---
# List records that are out of sync

View File

@ -0,0 +1,7 @@
---
assigned: ""
progress: 0
type: "note"
---
# List UAT Tasks that are no longer in Excel

View File

@ -0,0 +1,9 @@
---
assigned: ""
progress: 0
started: "2023-05-27T14:17:56.583Z"
type: "note"
completed: "2023-10-20T19:44:47.808Z"
---
# nginx Static HTML in old school form

View File

@ -0,0 +1,7 @@
---
assigned: ""
progress: 0
type: "note"
---
# Post one to User Story

View File

@ -0,0 +1,28 @@
---
assigned: ""
progress: 1
completed: "2023-05-27T00:00:00.000Z"
type: "note"
---
# Remove StaticFile Controller
```c#
_ = config.Routes.MapHttpRoute("Static", "{*url}", new { controller = "StaticFiles", action = "Index" });
public class StaticFilesController : ApiController
{
[HttpGet]
public HttpResponseMessage Index(string url)
{
if (string.IsNullOrWhiteSpace(url))
url = "index.html";
//var path = GeneratePath(url);
var response = new HttpResponseMessage();
//response.Content = new StringContent(File.ReadAllText(path));
//response.Content.Headers.ContentType = ContentType(url);
return response;
}
}
```

View File

@ -0,0 +1,8 @@
---
assigned: ""
progress: 0
type: "note"
completed: "2023-10-20T19:44:50.740Z"
---
# Switch to Infragistics Data Grid