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

7
MESAFIBACKLOG/board.css Normal file
View File

@ -0,0 +1,7 @@
.kanbn-task-data-workload {
display: none;
}
.kanbn-task-data-relation {
display: block;
color: #198038;
}

35
MESAFIBACKLOG/index.md Normal file
View File

@ -0,0 +1,35 @@
---
type: "Kanban"
startedColumns:
- 'In Progress'
completedColumns:
- Done
dateFormat: mm/dd
taskTemplate: '^+^_${overdue ? ''^R'' : ''''}${name}^: ${relations ? (''\n^-^/^g'' + relations.reduce((accumulator, currentValue) => accumulator.task + currentValue.task + '' '', '''')) : ''''}'
created: "2024-04-11T15:46:15.118Z"
updated: "2024-04-11T16:10:05.841Z"
---
# MESAFIBACKLOG
## Backlog
- [post-one-to-user-story](tasks/post-one-to-user-story.md)
- [get-one-api](tasks/get-one-api.md)
- [get-all-api](tasks/get-all-api.md)
- [in-tab-form-text-area-to-paste-over-excel](tasks/in-tab-form-text-area-to-paste-over-excel.md)
- [list-record-that-are-different](tasks/list-record-that-are-different.md)
- [list-records-that-are-out-of-sync](tasks/list-records-that-are-out-of-sync.md)
- [list-uat-tasks-that-are-no-longer-in-excel](tasks/list-uat-tasks-that-are-no-longer-in-excel.md)
## Todo
- [get-a-deticated-pat-from-each-developer](tasks/get-a-deticated-pat-from-each-developer.md)
## In Progress
## Done
- [remove-static-file-controller](tasks/remove-static-file-controller.md)
- [switch-to-infragistics-data-grid](tasks/switch-to-infragistics-data-grid.md)
- [nginx-static-html-in-old-school-form](tasks/nginx-static-html-in-old-school-form.md)

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