Remove .kanbn from git
This commit is contained in:
parent
4712ad4e7b
commit
d2e291fe64
@ -1,7 +0,0 @@
|
||||
.kanbn-task-data-workload {
|
||||
display: none;
|
||||
}
|
||||
.kanbn-task-data-relation {
|
||||
display: block;
|
||||
color: #198038;
|
||||
}
|
@ -1,35 +0,0 @@
|
||||
---
|
||||
type: "kanbn"
|
||||
created: "2023-10-20T05:13:53.986Z"
|
||||
updated: "2023-10-20T05:13:53.987Z"
|
||||
startedColumns:
|
||||
- 'In Progress'
|
||||
completedColumns:
|
||||
- Done
|
||||
dateFormat: mm/dd
|
||||
taskTemplate: '^+^_${overdue ? ''^R'' : ''''}${name}^: ${relations ? (''\n^-^/^g'' + relations.reduce((accumulator, currentValue) => accumulator.task + currentValue.task + '' '', '''')) : ''''}'
|
||||
---
|
||||
|
||||
# MESAFIBACKLOG
|
||||
|
||||
## Backlog
|
||||
|
||||
- [post-one-to-user-story](tasks/post-one-to-user-story.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-one-api](tasks/get-one-api.md)
|
||||
|
||||
## In Progress
|
||||
|
||||
- [nginx-static-html-in-old-school-form](tasks/nginx-static-html-in-old-school-form.md)
|
||||
- [get-all-api](tasks/get-all-api.md)
|
||||
- [switch-to-infragistics-data-grid](tasks/switch-to-infragistics-data-grid.md)
|
||||
|
||||
## Done
|
||||
|
||||
- [remove-static-file-controller](tasks/remove-static-file-controller.md)
|
@ -1,10 +0,0 @@
|
||||
---
|
||||
created: "2023-06-23T20:27:00.000Z"
|
||||
updated: "2023-06-23T20:27:00.000Z"
|
||||
assigned: ""
|
||||
progress: 0
|
||||
started: "2023-05-27T14:17:47.867Z"
|
||||
type: "note"
|
||||
---
|
||||
|
||||
# Get All API
|
@ -1,9 +0,0 @@
|
||||
---
|
||||
created: "2023-06-23T20:27:00.000Z"
|
||||
updated: "2023-06-23T20:27:00.000Z"
|
||||
assigned: ""
|
||||
progress: 0
|
||||
type: "note"
|
||||
---
|
||||
|
||||
# Get One API
|
@ -1,9 +0,0 @@
|
||||
---
|
||||
created: "2023-06-23T20:27:00.000Z"
|
||||
updated: "2023-06-23T20:27:00.000Z"
|
||||
assigned: ""
|
||||
progress: 0
|
||||
type: "note"
|
||||
---
|
||||
|
||||
# In tab form text area to paste over Excel
|
@ -1,9 +0,0 @@
|
||||
---
|
||||
created: "2023-06-23T20:27:00.000Z"
|
||||
updated: "2023-06-23T20:27:00.000Z"
|
||||
assigned: ""
|
||||
progress: 0
|
||||
type: "note"
|
||||
---
|
||||
|
||||
# List record that are different
|
@ -1,9 +0,0 @@
|
||||
---
|
||||
created: "2023-06-23T20:27:00.000Z"
|
||||
updated: "2023-06-23T20:27:00.000Z"
|
||||
assigned: ""
|
||||
progress: 0
|
||||
type: "note"
|
||||
---
|
||||
|
||||
# List records that are out of sync
|
@ -1,9 +0,0 @@
|
||||
---
|
||||
created: "2023-06-23T20:27:00.000Z"
|
||||
updated: "2023-06-23T20:27:00.000Z"
|
||||
assigned: ""
|
||||
progress: 0
|
||||
type: "note"
|
||||
---
|
||||
|
||||
# List UAT Tasks that are no longer in Excel
|
@ -1,10 +0,0 @@
|
||||
---
|
||||
created: "2023-06-23T20:27:00.000Z"
|
||||
updated: "2023-06-23T20:27:00.000Z"
|
||||
assigned: ""
|
||||
progress: 0
|
||||
started: "2023-05-27T14:17:56.583Z"
|
||||
type: "note"
|
||||
---
|
||||
|
||||
# nginx Static HTML in old school form
|
@ -1,9 +0,0 @@
|
||||
---
|
||||
created: "2023-06-23T20:27:00.000Z"
|
||||
updated: "2023-06-23T20:27:00.000Z"
|
||||
assigned: ""
|
||||
progress: 0
|
||||
type: "note"
|
||||
---
|
||||
|
||||
# Post one to User Story
|
@ -1,30 +0,0 @@
|
||||
---
|
||||
created: "2023-06-23T20:27:00.000Z"
|
||||
updated: "2023-06-23T20:27:00.000Z"
|
||||
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;
|
||||
}
|
||||
}
|
||||
```
|
@ -1,9 +0,0 @@
|
||||
---
|
||||
created: "2023-06-23T20:27:00.000Z"
|
||||
updated: "2023-06-23T20:27:00.000Z"
|
||||
assigned: ""
|
||||
progress: 0
|
||||
type: "note"
|
||||
---
|
||||
|
||||
# Switch to Infragistics Data Grid
|
Loading…
x
Reference in New Issue
Block a user