2024-06-03
This commit is contained in:
@ -0,0 +1,7 @@
|
||||
---
|
||||
assigned: ""
|
||||
progress: 0
|
||||
type: "note"
|
||||
---
|
||||
|
||||
# Get a deticated PAT from each developer
|
8
MESAFIBACKLOG/tasks/get-all-api.md
Normal file
8
MESAFIBACKLOG/tasks/get-all-api.md
Normal file
@ -0,0 +1,8 @@
|
||||
---
|
||||
assigned: ""
|
||||
progress: 0
|
||||
started: "2023-05-27T14:17:47.867Z"
|
||||
type: "note"
|
||||
---
|
||||
|
||||
# Get All API
|
7
MESAFIBACKLOG/tasks/get-one-api.md
Normal file
7
MESAFIBACKLOG/tasks/get-one-api.md
Normal file
@ -0,0 +1,7 @@
|
||||
---
|
||||
assigned: ""
|
||||
progress: 0
|
||||
type: "note"
|
||||
---
|
||||
|
||||
# Get One API
|
@ -0,0 +1,7 @@
|
||||
---
|
||||
assigned: ""
|
||||
progress: 0
|
||||
type: "note"
|
||||
---
|
||||
|
||||
# In tab form text area to paste over Excel
|
7
MESAFIBACKLOG/tasks/list-record-that-are-different.md
Normal file
7
MESAFIBACKLOG/tasks/list-record-that-are-different.md
Normal file
@ -0,0 +1,7 @@
|
||||
---
|
||||
assigned: ""
|
||||
progress: 0
|
||||
type: "note"
|
||||
---
|
||||
|
||||
# List record that are different
|
7
MESAFIBACKLOG/tasks/list-records-that-are-out-of-sync.md
Normal file
7
MESAFIBACKLOG/tasks/list-records-that-are-out-of-sync.md
Normal file
@ -0,0 +1,7 @@
|
||||
---
|
||||
assigned: ""
|
||||
progress: 0
|
||||
type: "note"
|
||||
---
|
||||
|
||||
# List records that are out of sync
|
@ -0,0 +1,7 @@
|
||||
---
|
||||
assigned: ""
|
||||
progress: 0
|
||||
type: "note"
|
||||
---
|
||||
|
||||
# List UAT Tasks that are no longer in Excel
|
@ -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
|
7
MESAFIBACKLOG/tasks/post-one-to-user-story.md
Normal file
7
MESAFIBACKLOG/tasks/post-one-to-user-story.md
Normal file
@ -0,0 +1,7 @@
|
||||
---
|
||||
assigned: ""
|
||||
progress: 0
|
||||
type: "note"
|
||||
---
|
||||
|
||||
# Post one to User Story
|
28
MESAFIBACKLOG/tasks/remove-static-file-controller.md
Normal file
28
MESAFIBACKLOG/tasks/remove-static-file-controller.md
Normal 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;
|
||||
}
|
||||
}
|
||||
```
|
8
MESAFIBACKLOG/tasks/switch-to-infragistics-data-grid.md
Normal file
8
MESAFIBACKLOG/tasks/switch-to-infragistics-data-grid.md
Normal file
@ -0,0 +1,8 @@
|
||||
---
|
||||
assigned: ""
|
||||
progress: 0
|
||||
type: "note"
|
||||
completed: "2023-10-20T19:44:50.740Z"
|
||||
---
|
||||
|
||||
# Switch to Infragistics Data Grid
|
Reference in New Issue
Block a user