chore: clean repository (full-reset)
This commit is contained in:
parent
08e11b8a76
commit
5426462640
|
|
@ -1,52 +0,0 @@
|
|||
{
|
||||
"name": "pocketbase-lite",
|
||||
"version": "0.1.0",
|
||||
"paths": {
|
||||
"data": "collections/",
|
||||
"media": "media/",
|
||||
"indexes": ".gitapp/indexes/"
|
||||
},
|
||||
"schemas": [
|
||||
{
|
||||
"id": "users",
|
||||
"file": "schemas/users.json",
|
||||
"glob": "collections/users/*.json"
|
||||
},
|
||||
{
|
||||
"id": "labels",
|
||||
"file": "schemas/labels.json",
|
||||
"glob": "collections/labels/*.json"
|
||||
},
|
||||
{
|
||||
"id": "projects",
|
||||
"file": "schemas/projects.json",
|
||||
"glob": "collections/projects/*.json"
|
||||
},
|
||||
{
|
||||
"id": "sprints",
|
||||
"file": "schemas/sprints.json",
|
||||
"glob": "collections/sprints/*.json"
|
||||
},
|
||||
{
|
||||
"id": "issues",
|
||||
"file": "schemas/issues.json",
|
||||
"glob": "collections/issues/*.json"
|
||||
},
|
||||
{
|
||||
"id": "comments",
|
||||
"file": "schemas/comments.json",
|
||||
"glob": "collections/comments/*.json"
|
||||
}
|
||||
],
|
||||
"operations": [],
|
||||
"policies": {
|
||||
"roles": [
|
||||
"viewer",
|
||||
"editor"
|
||||
],
|
||||
"acl": null
|
||||
},
|
||||
"lfs": {
|
||||
"enabled": false
|
||||
}
|
||||
}
|
||||
|
|
@ -1,32 +0,0 @@
|
|||
{
|
||||
"$id": "comments",
|
||||
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
||||
"type": "object",
|
||||
"required": [
|
||||
"content"
|
||||
],
|
||||
"properties": {
|
||||
"content": {
|
||||
"type": "string",
|
||||
"minLength": 1
|
||||
},
|
||||
"date": {
|
||||
"type": "string",
|
||||
"format": "date-time"
|
||||
},
|
||||
"issue": {
|
||||
"type": "string",
|
||||
"x-relation": {
|
||||
"collection": "issues",
|
||||
"type": "single"
|
||||
}
|
||||
},
|
||||
"author": {
|
||||
"type": "string",
|
||||
"x-relation": {
|
||||
"collection": "users",
|
||||
"type": "single"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -1,95 +0,0 @@
|
|||
{
|
||||
"$id": "issues",
|
||||
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
||||
"type": "object",
|
||||
"required": [
|
||||
"title",
|
||||
"type",
|
||||
"status"
|
||||
],
|
||||
"properties": {
|
||||
"title": {
|
||||
"type": "string",
|
||||
"minLength": 1
|
||||
},
|
||||
"description": {
|
||||
"type": "string"
|
||||
},
|
||||
"type": {
|
||||
"type": "string",
|
||||
"enum": [
|
||||
"bug",
|
||||
"feature",
|
||||
"task",
|
||||
"story",
|
||||
"epic"
|
||||
]
|
||||
},
|
||||
"priority": {
|
||||
"type": "string",
|
||||
"enum": [
|
||||
"low",
|
||||
"medium",
|
||||
"high",
|
||||
"critical"
|
||||
]
|
||||
},
|
||||
"status": {
|
||||
"type": "string",
|
||||
"enum": [
|
||||
"backlog",
|
||||
"todo",
|
||||
"in_progress",
|
||||
"review",
|
||||
"done"
|
||||
]
|
||||
},
|
||||
"estimate": {
|
||||
"type": "integer",
|
||||
"minimum": 0
|
||||
},
|
||||
"dueDate": {
|
||||
"type": "string",
|
||||
"format": "date"
|
||||
},
|
||||
"project": {
|
||||
"type": "string",
|
||||
"x-relation": {
|
||||
"collection": "projects",
|
||||
"type": "single"
|
||||
}
|
||||
},
|
||||
"assignee": {
|
||||
"type": "string",
|
||||
"x-relation": {
|
||||
"collection": "users",
|
||||
"type": "single"
|
||||
}
|
||||
},
|
||||
"reporter": {
|
||||
"type": "string",
|
||||
"x-relation": {
|
||||
"collection": "users",
|
||||
"type": "single"
|
||||
}
|
||||
},
|
||||
"labels": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "string"
|
||||
},
|
||||
"x-relation": {
|
||||
"collection": "labels",
|
||||
"type": "multiple",
|
||||
"maxItems": 5
|
||||
}
|
||||
},
|
||||
"sprint": {
|
||||
"type": "string",
|
||||
"x-relation": {
|
||||
"collection": "sprints",
|
||||
"type": "single"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -1,21 +0,0 @@
|
|||
{
|
||||
"$id": "labels",
|
||||
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
||||
"type": "object",
|
||||
"required": [
|
||||
"name",
|
||||
"color"
|
||||
],
|
||||
"properties": {
|
||||
"name": {
|
||||
"type": "string",
|
||||
"minLength": 1
|
||||
},
|
||||
"color": {
|
||||
"type": "string"
|
||||
},
|
||||
"description": {
|
||||
"type": "string"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -1,42 +0,0 @@
|
|||
{
|
||||
"$id": "projects",
|
||||
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
||||
"type": "object",
|
||||
"required": [
|
||||
"name",
|
||||
"key"
|
||||
],
|
||||
"properties": {
|
||||
"name": {
|
||||
"type": "string",
|
||||
"minLength": 1
|
||||
},
|
||||
"key": {
|
||||
"type": "string",
|
||||
"minLength": 2,
|
||||
"maxLength": 5
|
||||
},
|
||||
"description": {
|
||||
"type": "string"
|
||||
},
|
||||
"color": {
|
||||
"type": "string"
|
||||
},
|
||||
"status": {
|
||||
"type": "string",
|
||||
"enum": [
|
||||
"active",
|
||||
"on-hold",
|
||||
"completed",
|
||||
"archived"
|
||||
]
|
||||
},
|
||||
"lead": {
|
||||
"type": "string",
|
||||
"x-relation": {
|
||||
"collection": "users",
|
||||
"type": "single"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -1,34 +0,0 @@
|
|||
{
|
||||
"$id": "sprints",
|
||||
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
||||
"type": "object",
|
||||
"required": [
|
||||
"name",
|
||||
"startDate",
|
||||
"endDate"
|
||||
],
|
||||
"properties": {
|
||||
"name": {
|
||||
"type": "string",
|
||||
"minLength": 1
|
||||
},
|
||||
"startDate": {
|
||||
"type": "string",
|
||||
"format": "date"
|
||||
},
|
||||
"endDate": {
|
||||
"type": "string",
|
||||
"format": "date"
|
||||
},
|
||||
"goal": {
|
||||
"type": "string"
|
||||
},
|
||||
"project": {
|
||||
"type": "string",
|
||||
"x-relation": {
|
||||
"collection": "projects",
|
||||
"type": "single"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -1,32 +0,0 @@
|
|||
{
|
||||
"$id": "users",
|
||||
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
||||
"type": "object",
|
||||
"required": [
|
||||
"name",
|
||||
"email"
|
||||
],
|
||||
"properties": {
|
||||
"name": {
|
||||
"type": "string",
|
||||
"minLength": 1
|
||||
},
|
||||
"email": {
|
||||
"type": "string",
|
||||
"format": "email"
|
||||
},
|
||||
"avatar": {
|
||||
"type": "string"
|
||||
},
|
||||
"role": {
|
||||
"type": "string",
|
||||
"enum": [
|
||||
"admin",
|
||||
"developer",
|
||||
"designer",
|
||||
"qa",
|
||||
"pm"
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -1,8 +0,0 @@
|
|||
{
|
||||
"content": "Clarus cupiditas advoco totam teres adulescens. Tubineus claudeo culpo adfero deorsum sollers sumptus utique vir rerum.",
|
||||
"date": "2025-12-09T08:37:08.318Z",
|
||||
"issue": "issu_1766159442254_16",
|
||||
"author": "user_1766159442254_1",
|
||||
"created": "2025-12-19T15:50:45.766Z",
|
||||
"updated": "2025-12-19T15:50:45.766Z"
|
||||
}
|
||||
|
|
@ -1,8 +0,0 @@
|
|||
{
|
||||
"content": "This is blocked by another issue.",
|
||||
"date": "2025-12-10T06:43:54.459Z",
|
||||
"issue": "issu_1766159442254_4",
|
||||
"author": "user_1766159442254_0",
|
||||
"created": "2025-12-19T15:50:45.766Z",
|
||||
"updated": "2025-12-19T15:50:45.766Z"
|
||||
}
|
||||
|
|
@ -1,8 +0,0 @@
|
|||
{
|
||||
"content": "Looking into this now.",
|
||||
"date": "2025-12-14T04:42:38.869Z",
|
||||
"issue": "issu_1766159442254_5",
|
||||
"author": "user_1766159442254_2",
|
||||
"created": "2025-12-19T15:50:45.766Z",
|
||||
"updated": "2025-12-19T15:50:45.766Z"
|
||||
}
|
||||
|
|
@ -1,8 +0,0 @@
|
|||
{
|
||||
"content": "Ready for review.",
|
||||
"date": "2025-12-09T03:08:26.299Z",
|
||||
"issue": "issu_1766159442254_9",
|
||||
"author": "user_1766159442254_2",
|
||||
"created": "2025-12-19T15:50:45.766Z",
|
||||
"updated": "2025-12-19T15:50:45.766Z"
|
||||
}
|
||||
|
|
@ -1,8 +0,0 @@
|
|||
{
|
||||
"content": "Looking into this now.",
|
||||
"date": "2025-12-10T10:43:03.841Z",
|
||||
"issue": "issu_1766159442254_13",
|
||||
"author": "user_1766159442254_2",
|
||||
"created": "2025-12-19T15:50:45.766Z",
|
||||
"updated": "2025-12-19T15:50:45.766Z"
|
||||
}
|
||||
|
|
@ -1,8 +0,0 @@
|
|||
{
|
||||
"content": "Found the root cause.",
|
||||
"date": "2025-12-09T11:03:41.530Z",
|
||||
"issue": "issu_1766159442254_2",
|
||||
"author": "user_1766159442254_2",
|
||||
"created": "2025-12-19T15:50:45.766Z",
|
||||
"updated": "2025-12-19T15:50:45.766Z"
|
||||
}
|
||||
|
|
@ -1,8 +0,0 @@
|
|||
{
|
||||
"content": "Can you provide more details?",
|
||||
"date": "2025-12-13T23:43:18.173Z",
|
||||
"issue": "issu_1766159442254_6",
|
||||
"author": "user_1766159442254_2",
|
||||
"created": "2025-12-19T15:50:45.766Z",
|
||||
"updated": "2025-12-19T15:50:45.766Z"
|
||||
}
|
||||
|
|
@ -1,8 +0,0 @@
|
|||
{
|
||||
"content": "Can you provide more details?",
|
||||
"date": "2025-12-13T07:09:11.628Z",
|
||||
"issue": "issu_1766159442254_13",
|
||||
"author": "user_1766159442254_0",
|
||||
"created": "2025-12-19T15:50:45.766Z",
|
||||
"updated": "2025-12-19T15:50:45.766Z"
|
||||
}
|
||||
|
|
@ -1,8 +0,0 @@
|
|||
{
|
||||
"content": "Fixed in the latest commit.",
|
||||
"date": "2025-12-08T17:27:57.471Z",
|
||||
"issue": "issu_1766159442254_16",
|
||||
"author": "user_1766159442254_0",
|
||||
"created": "2025-12-19T15:50:45.766Z",
|
||||
"updated": "2025-12-19T15:50:45.766Z"
|
||||
}
|
||||
|
|
@ -1,8 +0,0 @@
|
|||
{
|
||||
"content": "Fixed in the latest commit.",
|
||||
"date": "2025-12-19T12:49:36.606Z",
|
||||
"issue": "issu_1766159442254_19",
|
||||
"author": "user_1766159442254_1",
|
||||
"created": "2025-12-19T15:50:45.766Z",
|
||||
"updated": "2025-12-19T15:50:45.766Z"
|
||||
}
|
||||
|
|
@ -1,8 +0,0 @@
|
|||
{
|
||||
"content": "Can you provide more details?",
|
||||
"date": "2025-12-13T19:09:58.905Z",
|
||||
"issue": "issu_1766159442254_18",
|
||||
"author": "user_1766159442254_2",
|
||||
"created": "2025-12-19T15:50:45.766Z",
|
||||
"updated": "2025-12-19T15:50:45.766Z"
|
||||
}
|
||||
|
|
@ -1,8 +0,0 @@
|
|||
{
|
||||
"content": "Approved, looks good!",
|
||||
"date": "2025-12-11T21:38:08.911Z",
|
||||
"issue": "issu_1766159442254_10",
|
||||
"author": "user_1766159442254_2",
|
||||
"created": "2025-12-19T15:50:45.766Z",
|
||||
"updated": "2025-12-19T15:50:45.766Z"
|
||||
}
|
||||
|
|
@ -1,8 +0,0 @@
|
|||
{
|
||||
"content": "Looking into this now.",
|
||||
"date": "2025-12-10T20:56:26.694Z",
|
||||
"issue": "issu_1766159442254_2",
|
||||
"author": "user_1766159442254_2",
|
||||
"created": "2025-12-19T15:50:45.766Z",
|
||||
"updated": "2025-12-19T15:50:45.766Z"
|
||||
}
|
||||
|
|
@ -1,8 +0,0 @@
|
|||
{
|
||||
"content": "Looking into this now.",
|
||||
"date": "2025-12-13T13:21:10.181Z",
|
||||
"issue": "issu_1766159442254_5",
|
||||
"author": "user_1766159442254_0",
|
||||
"created": "2025-12-19T15:50:45.766Z",
|
||||
"updated": "2025-12-19T15:50:45.766Z"
|
||||
}
|
||||
|
|
@ -1,8 +0,0 @@
|
|||
{
|
||||
"content": "Ready for review.",
|
||||
"date": "2025-12-08T02:36:25.635Z",
|
||||
"issue": "issu_1766159442254_13",
|
||||
"author": "user_1766159442254_1",
|
||||
"created": "2025-12-19T15:50:45.766Z",
|
||||
"updated": "2025-12-19T15:50:45.766Z"
|
||||
}
|
||||
|
|
@ -1,8 +0,0 @@
|
|||
{
|
||||
"content": "Fixed in the latest commit.",
|
||||
"date": "2025-12-11T21:07:29.068Z",
|
||||
"issue": "issu_1766159442254_2",
|
||||
"author": "user_1766159442254_2",
|
||||
"created": "2025-12-19T15:50:45.766Z",
|
||||
"updated": "2025-12-19T15:50:45.766Z"
|
||||
}
|
||||
|
|
@ -1,8 +0,0 @@
|
|||
{
|
||||
"content": "Will address in the next sprint.",
|
||||
"date": "2025-12-14T15:01:50.142Z",
|
||||
"issue": "issu_1766159442254_15",
|
||||
"author": "user_1766159442254_1",
|
||||
"created": "2025-12-19T15:50:45.766Z",
|
||||
"updated": "2025-12-19T15:50:45.766Z"
|
||||
}
|
||||
|
|
@ -1,8 +0,0 @@
|
|||
{
|
||||
"content": "Approved, looks good!",
|
||||
"date": "2025-12-10T22:22:17.455Z",
|
||||
"issue": "issu_1766159442254_17",
|
||||
"author": "user_1766159442254_0",
|
||||
"created": "2025-12-19T15:50:45.766Z",
|
||||
"updated": "2025-12-19T15:50:45.766Z"
|
||||
}
|
||||
|
|
@ -1,8 +0,0 @@
|
|||
{
|
||||
"content": "Will address in the next sprint.",
|
||||
"date": "2025-12-06T08:15:20.983Z",
|
||||
"issue": "issu_1766159442254_13",
|
||||
"author": "user_1766159442254_1",
|
||||
"created": "2025-12-19T15:50:45.766Z",
|
||||
"updated": "2025-12-19T15:50:45.766Z"
|
||||
}
|
||||
|
|
@ -1,8 +0,0 @@
|
|||
{
|
||||
"content": "Added to the backlog.",
|
||||
"date": "2025-12-07T09:11:59.847Z",
|
||||
"issue": "issu_1766159442254_5",
|
||||
"author": "user_1766159442254_2",
|
||||
"created": "2025-12-19T15:50:45.766Z",
|
||||
"updated": "2025-12-19T15:50:45.766Z"
|
||||
}
|
||||
|
|
@ -1,8 +0,0 @@
|
|||
{
|
||||
"content": "Found the root cause.",
|
||||
"date": "2025-12-12T21:37:54.869Z",
|
||||
"issue": "issu_1766159442254_1",
|
||||
"author": "user_1766159442254_0",
|
||||
"created": "2025-12-19T15:50:45.766Z",
|
||||
"updated": "2025-12-19T15:50:45.766Z"
|
||||
}
|
||||
|
|
@ -1,8 +0,0 @@
|
|||
{
|
||||
"content": "Ready for review.",
|
||||
"date": "2025-12-14T20:11:42.236Z",
|
||||
"issue": "issu_1766159442254_10",
|
||||
"author": "user_1766159442254_0",
|
||||
"created": "2025-12-19T15:50:45.766Z",
|
||||
"updated": "2025-12-19T15:50:45.766Z"
|
||||
}
|
||||
|
|
@ -1,8 +0,0 @@
|
|||
{
|
||||
"content": "Found the root cause.",
|
||||
"date": "2025-12-09T17:56:32.720Z",
|
||||
"issue": "issu_1766159442254_11",
|
||||
"author": "user_1766159442254_0",
|
||||
"created": "2025-12-19T15:50:45.766Z",
|
||||
"updated": "2025-12-19T15:50:45.766Z"
|
||||
}
|
||||
|
|
@ -1,8 +0,0 @@
|
|||
{
|
||||
"content": "Valetudo talus tener deleo cibus vinculum amaritudo neque cunctatio vox. Voro ager spoliatio vinco.",
|
||||
"date": "2025-12-07T07:33:07.812Z",
|
||||
"issue": "issu_1766159442254_1",
|
||||
"author": "user_1766159442254_1",
|
||||
"created": "2025-12-19T15:50:45.766Z",
|
||||
"updated": "2025-12-19T15:50:45.766Z"
|
||||
}
|
||||
|
|
@ -1,8 +0,0 @@
|
|||
{
|
||||
"content": "Will address in the next sprint.",
|
||||
"date": "2025-12-08T03:46:10.121Z",
|
||||
"issue": "issu_1766159442254_3",
|
||||
"author": "user_1766159442254_2",
|
||||
"created": "2025-12-19T15:50:45.766Z",
|
||||
"updated": "2025-12-19T15:50:45.766Z"
|
||||
}
|
||||
|
|
@ -1,8 +0,0 @@
|
|||
{
|
||||
"content": "Fixed in the latest commit.",
|
||||
"date": "2025-12-05T16:06:25.976Z",
|
||||
"issue": "issu_1766159442254_19",
|
||||
"author": "user_1766159442254_0",
|
||||
"created": "2025-12-19T15:50:45.766Z",
|
||||
"updated": "2025-12-19T15:50:45.766Z"
|
||||
}
|
||||
|
|
@ -1,8 +0,0 @@
|
|||
{
|
||||
"content": "Added to the backlog.",
|
||||
"date": "2025-12-15T12:34:52.913Z",
|
||||
"issue": "issu_1766159442254_12",
|
||||
"author": "user_1766159442254_2",
|
||||
"created": "2025-12-19T15:50:45.766Z",
|
||||
"updated": "2025-12-19T15:50:45.766Z"
|
||||
}
|
||||
|
|
@ -1,8 +0,0 @@
|
|||
{
|
||||
"content": "This is blocked by another issue.",
|
||||
"date": "2025-12-14T14:55:31.937Z",
|
||||
"issue": "issu_1766159442254_4",
|
||||
"author": "user_1766159442254_2",
|
||||
"created": "2025-12-19T15:50:45.766Z",
|
||||
"updated": "2025-12-19T15:50:45.766Z"
|
||||
}
|
||||
|
|
@ -1,8 +0,0 @@
|
|||
{
|
||||
"content": "Added to the backlog.",
|
||||
"date": "2025-12-09T23:22:25.777Z",
|
||||
"issue": "issu_1766159442254_14",
|
||||
"author": "user_1766159442254_2",
|
||||
"created": "2025-12-19T15:50:45.766Z",
|
||||
"updated": "2025-12-19T15:50:45.766Z"
|
||||
}
|
||||
|
|
@ -1,8 +0,0 @@
|
|||
{
|
||||
"content": "Approved, looks good!",
|
||||
"date": "2025-12-15T09:20:06.741Z",
|
||||
"issue": "issu_1766159442254_14",
|
||||
"author": "user_1766159442254_1",
|
||||
"created": "2025-12-19T15:50:45.766Z",
|
||||
"updated": "2025-12-19T15:50:45.766Z"
|
||||
}
|
||||
|
|
@ -1,8 +0,0 @@
|
|||
{
|
||||
"content": "Can you provide more details?",
|
||||
"date": "2025-12-08T15:02:45.290Z",
|
||||
"issue": "issu_1766159442254_13",
|
||||
"author": "user_1766159442254_0",
|
||||
"created": "2025-12-19T15:50:45.766Z",
|
||||
"updated": "2025-12-19T15:50:45.766Z"
|
||||
}
|
||||
|
|
@ -1,8 +0,0 @@
|
|||
{
|
||||
"content": "Ready for review.",
|
||||
"date": "2025-12-07T04:43:16.388Z",
|
||||
"issue": "issu_1766159442254_1",
|
||||
"author": "user_1766159442254_2",
|
||||
"created": "2025-12-19T15:50:45.766Z",
|
||||
"updated": "2025-12-19T15:50:45.766Z"
|
||||
}
|
||||
|
|
@ -1,8 +0,0 @@
|
|||
{
|
||||
"content": "Will address in the next sprint.",
|
||||
"date": "2025-12-18T06:36:15.888Z",
|
||||
"issue": "issu_1766159442254_1",
|
||||
"author": "user_1766159442254_1",
|
||||
"created": "2025-12-19T15:50:45.766Z",
|
||||
"updated": "2025-12-19T15:50:45.766Z"
|
||||
}
|
||||
|
|
@ -1,8 +0,0 @@
|
|||
{
|
||||
"content": "Found the root cause.",
|
||||
"date": "2025-12-18T10:25:07.708Z",
|
||||
"issue": "issu_1766159442254_0",
|
||||
"author": "user_1766159442254_1",
|
||||
"created": "2025-12-19T15:50:45.766Z",
|
||||
"updated": "2025-12-19T15:50:45.766Z"
|
||||
}
|
||||
|
|
@ -1,8 +0,0 @@
|
|||
{
|
||||
"content": "Tactus succurro custodia tamquam vomito curo tabula vito delectus utor. Carmen balbus quisquam civitas celer tolero valde sperno voco tolero.",
|
||||
"date": "2025-12-06T18:47:41.053Z",
|
||||
"issue": "issu_1766159442254_5",
|
||||
"author": "user_1766159442254_0",
|
||||
"created": "2025-12-19T15:50:45.766Z",
|
||||
"updated": "2025-12-19T15:50:45.766Z"
|
||||
}
|
||||
|
|
@ -1,8 +0,0 @@
|
|||
{
|
||||
"content": "This is blocked by another issue.",
|
||||
"date": "2025-12-06T14:09:28.885Z",
|
||||
"issue": "issu_1766159442254_5",
|
||||
"author": "user_1766159442254_2",
|
||||
"created": "2025-12-19T15:50:45.766Z",
|
||||
"updated": "2025-12-19T15:50:45.766Z"
|
||||
}
|
||||
|
|
@ -1,8 +0,0 @@
|
|||
{
|
||||
"content": "Found the root cause.",
|
||||
"date": "2025-12-17T11:28:56.583Z",
|
||||
"issue": "issu_1766159442254_13",
|
||||
"author": "user_1766159442254_2",
|
||||
"created": "2025-12-19T15:50:45.766Z",
|
||||
"updated": "2025-12-19T15:50:45.766Z"
|
||||
}
|
||||
|
|
@ -1,8 +0,0 @@
|
|||
{
|
||||
"content": "Can you provide more details?",
|
||||
"date": "2025-12-10T16:50:46.243Z",
|
||||
"issue": "issu_1766159442254_9",
|
||||
"author": "user_1766159442254_1",
|
||||
"created": "2025-12-19T15:50:45.766Z",
|
||||
"updated": "2025-12-19T15:50:45.766Z"
|
||||
}
|
||||
|
|
@ -1,8 +0,0 @@
|
|||
{
|
||||
"content": "Will address in the next sprint.",
|
||||
"date": "2025-12-10T07:46:37.865Z",
|
||||
"issue": "issu_1766159442254_8",
|
||||
"author": "user_1766159442254_2",
|
||||
"created": "2025-12-19T15:50:45.766Z",
|
||||
"updated": "2025-12-19T15:50:45.766Z"
|
||||
}
|
||||
|
|
@ -1,8 +0,0 @@
|
|||
{
|
||||
"content": "Will address in the next sprint.",
|
||||
"date": "2025-12-08T11:38:32.318Z",
|
||||
"issue": "issu_1766159442254_6",
|
||||
"author": "user_1766159442254_0",
|
||||
"created": "2025-12-19T15:50:45.766Z",
|
||||
"updated": "2025-12-19T15:50:45.766Z"
|
||||
}
|
||||
|
|
@ -1,18 +0,0 @@
|
|||
{
|
||||
"title": "Fix login button not responding on mobile",
|
||||
"description": "Damno confido adicio. Desidero coniecto subseco pariatur apparatus spero angustus cohors qui. Beatus delectatio damno pariatur pecus astrum despecto cerno.\nVulariter utor solutio dignissimos valde aestus. Tum tubineus stips bonus tandem carmen usitas tremo cornu. Adfero fugiat curis ager abscido solus brevis teneo conatus nulla.",
|
||||
"type": "story",
|
||||
"priority": "critical",
|
||||
"status": "todo",
|
||||
"estimate": 5,
|
||||
"dueDate": "2026-03-14",
|
||||
"project": "proj_1766159442254_0",
|
||||
"assignee": "user_1766159442254_1",
|
||||
"reporter": "user_1766159442254_0",
|
||||
"labels": [
|
||||
"labe_1766159442254_0"
|
||||
],
|
||||
"sprint": "spri_1766159442254_3",
|
||||
"created": "2025-12-19T15:50:45.016Z",
|
||||
"updated": "2025-12-19T15:50:45.016Z"
|
||||
}
|
||||
|
|
@ -1,19 +0,0 @@
|
|||
{
|
||||
"title": "Implement dark mode toggle",
|
||||
"description": "Saepe trucido temptatio ad ubi corrigo charisma delibero. Abundans ademptio adhuc tredecim. Clarus sumptus arceo creta.\nConicio error dapifer ciminatio conservo cicuta. Stultus ambulo tamisium tergo. Casus cupio sapiente.",
|
||||
"type": "bug",
|
||||
"priority": "high",
|
||||
"status": "done",
|
||||
"estimate": 1,
|
||||
"dueDate": "2026-02-28",
|
||||
"project": "proj_1766159442254_0",
|
||||
"assignee": "user_1766159442254_0",
|
||||
"reporter": "user_1766159442254_2",
|
||||
"labels": [
|
||||
"labe_1766159442254_0",
|
||||
"labe_1766159442254_1"
|
||||
],
|
||||
"sprint": null,
|
||||
"created": "2025-12-19T15:50:45.016Z",
|
||||
"updated": "2025-12-19T15:50:45.016Z"
|
||||
}
|
||||
|
|
@ -1,18 +0,0 @@
|
|||
{
|
||||
"title": "Implement password reset flow",
|
||||
"description": "Coadunatio sophismata cedo tantum aliquam texo quidem. Bardus copia in vigilo adsidue. Molestias adulatio defaeco comparo deduco harum.\nAstrum repellat dens depraedor conscendo textus. Capto sollicito viridis nisi absens sustineo contra ancilla supplanto. Absque absorbeo cariosus abscido convoco utroque apto dolorem summopere.",
|
||||
"type": "epic",
|
||||
"priority": "high",
|
||||
"status": "backlog",
|
||||
"estimate": 5,
|
||||
"dueDate": "2026-02-05",
|
||||
"project": "proj_1766159442254_0",
|
||||
"assignee": "user_1766159442254_1",
|
||||
"reporter": "user_1766159442254_1",
|
||||
"labels": [
|
||||
"labe_1766159442254_1"
|
||||
],
|
||||
"sprint": "spri_1766159442254_3",
|
||||
"created": "2025-12-19T15:50:45.016Z",
|
||||
"updated": "2025-12-19T15:50:45.016Z"
|
||||
}
|
||||
|
|
@ -1,19 +0,0 @@
|
|||
{
|
||||
"title": "Fix timezone issues in calendar",
|
||||
"description": "Cornu enim tertius amiculum conscendo uberrime stultus. Validus trado attonbitus utrum cunae eveniet calculus bene adimpleo charisma. Curia voluptatibus adfectus cogo peccatus acquiro torqueo claro aureus undique.\nAccommodo animi tero vulticulus varietas animus suggero pax tabesco iusto. Amet anser coma solum tenuis. Vito damnatio coadunatio stipes sponte xiphias corroboro.",
|
||||
"type": "task",
|
||||
"priority": "critical",
|
||||
"status": "in_progress",
|
||||
"estimate": 2,
|
||||
"dueDate": "2026-02-16",
|
||||
"project": "proj_1766159442254_0",
|
||||
"assignee": "user_1766159442254_1",
|
||||
"reporter": "user_1766159442254_0",
|
||||
"labels": [
|
||||
"labe_1766159442254_0",
|
||||
"labe_1766159442254_1"
|
||||
],
|
||||
"sprint": "spri_1766159442254_2",
|
||||
"created": "2025-12-19T15:50:45.016Z",
|
||||
"updated": "2025-12-19T15:50:45.016Z"
|
||||
}
|
||||
|
|
@ -1,19 +0,0 @@
|
|||
{
|
||||
"title": "Add keyboard shortcuts",
|
||||
"description": "Usus copia testimonium corrumpo maiores abstergo tabula. Viscus reiciendis voveo spiculum. Carus color dolor aureus candidus ater viriliter vulgo cattus.\nVulgus unde absens correptius thema. Sortitus ventus somniculosus fugiat error argumentum calculus approbo cunae claudeo. Reiciendis utor adfectus animi.",
|
||||
"type": "bug",
|
||||
"priority": "high",
|
||||
"status": "done",
|
||||
"estimate": 8,
|
||||
"dueDate": "2026-03-06",
|
||||
"project": "proj_1766159442254_0",
|
||||
"assignee": "user_1766159442254_0",
|
||||
"reporter": "user_1766159442254_0",
|
||||
"labels": [
|
||||
"labe_1766159442254_1",
|
||||
"labe_1766159442254_0"
|
||||
],
|
||||
"sprint": "spri_1766159442254_1",
|
||||
"created": "2025-12-19T15:50:45.016Z",
|
||||
"updated": "2025-12-19T15:50:45.016Z"
|
||||
}
|
||||
|
|
@ -1,18 +0,0 @@
|
|||
{
|
||||
"title": "Improve loading performance",
|
||||
"description": "Defero bis cibus speculum aiunt tunc conturbo. Damno validus calamitas theologus quia architecto aurum. Conitor tripudio somniculosus coniuratio alo ceno.\nAranea numquam caput mollitia. Aer tristis sumo auctor vinculum sortitus. Ultra aspernatur vesica cogito terreo vilis absens carcer cauda.",
|
||||
"type": "epic",
|
||||
"priority": "high",
|
||||
"status": "backlog",
|
||||
"estimate": 1,
|
||||
"dueDate": "2026-01-05",
|
||||
"project": "proj_1766159442254_0",
|
||||
"assignee": "user_1766159442254_2",
|
||||
"reporter": "user_1766159442254_0",
|
||||
"labels": [
|
||||
"labe_1766159442254_1"
|
||||
],
|
||||
"sprint": "spri_1766159442254_2",
|
||||
"created": "2025-12-19T15:50:45.016Z",
|
||||
"updated": "2025-12-19T15:50:45.016Z"
|
||||
}
|
||||
|
|
@ -1,16 +0,0 @@
|
|||
{
|
||||
"title": "Fix email template rendering",
|
||||
"description": "Vester abscido apparatus audentia ocer deorsum valeo facilis capillus. Amplitudo succurro abutor adsidue. Aut subnecto atrox.\nOmnis absque celer coepi consequatur conqueror aegre decipio. Reprehenderit vociferor aequitas tantillus capitulus. Teres bellum sumo coruscus.",
|
||||
"type": "task",
|
||||
"priority": "medium",
|
||||
"status": "todo",
|
||||
"estimate": 13,
|
||||
"dueDate": "2025-12-23",
|
||||
"project": "proj_1766159442254_0",
|
||||
"assignee": "user_1766159442254_1",
|
||||
"reporter": "user_1766159442254_1",
|
||||
"labels": [],
|
||||
"sprint": null,
|
||||
"created": "2025-12-19T15:50:45.016Z",
|
||||
"updated": "2025-12-19T15:50:45.016Z"
|
||||
}
|
||||
|
|
@ -1,19 +0,0 @@
|
|||
{
|
||||
"title": "Add multi-language support",
|
||||
"description": "Vulariter videlicet subnecto annus auditor suffoco vitae. Blandior adiuvo officia depereo cubicularis adduco adfectus cernuus clibanus cauda. Expedita sponte carmen aequus accusamus congregatio.\nArcus cariosus solitudo cunabula tabgo via uter commodo. Villa stipes curis conqueror adicio aufero necessitatibus. Cunae cribro amor conicio usus vomica corroboro.",
|
||||
"type": "task",
|
||||
"priority": "critical",
|
||||
"status": "review",
|
||||
"estimate": 13,
|
||||
"dueDate": "2026-03-10",
|
||||
"project": "proj_1766159442254_0",
|
||||
"assignee": "user_1766159442254_0",
|
||||
"reporter": "user_1766159442254_1",
|
||||
"labels": [
|
||||
"labe_1766159442254_1",
|
||||
"labe_1766159442254_0"
|
||||
],
|
||||
"sprint": null,
|
||||
"created": "2025-12-19T15:50:45.016Z",
|
||||
"updated": "2025-12-19T15:50:45.016Z"
|
||||
}
|
||||
|
|
@ -1,19 +0,0 @@
|
|||
{
|
||||
"title": "Implement webhook notifications",
|
||||
"description": "Totus casso contra ars tandem colligo pauper. Degusto volaticus cauda consectetur pauper. Cubicularis callide volo tergo tum.\nTextilis videlicet spiculum cattus possimus ambulo ubi cumque. Assentator mollitia arbustum tibi. Absconditus bis virga caterva spoliatio claustrum vacuus ventosus sufficio decretum.",
|
||||
"type": "bug",
|
||||
"priority": "low",
|
||||
"status": "done",
|
||||
"estimate": 3,
|
||||
"dueDate": "2026-03-05",
|
||||
"project": "proj_1766159442254_0",
|
||||
"assignee": "user_1766159442254_1",
|
||||
"reporter": "user_1766159442254_2",
|
||||
"labels": [
|
||||
"labe_1766159442254_0",
|
||||
"labe_1766159442254_1"
|
||||
],
|
||||
"sprint": null,
|
||||
"created": "2025-12-19T15:50:45.016Z",
|
||||
"updated": "2025-12-19T15:50:45.016Z"
|
||||
}
|
||||
|
|
@ -1,18 +0,0 @@
|
|||
{
|
||||
"title": "Fix image upload validation",
|
||||
"description": "Repudiandae centum sollicito uberrime deficio. Commodo utrum cura ultra dolores. Bestia adfectus tutis pariatur.\nTener stultus sum curtus soluta tamquam contabesco vehemens auctor. Impedit patruus socius teneo volaticus. Abstergo urbs arguo subvenio ubi.",
|
||||
"type": "bug",
|
||||
"priority": "high",
|
||||
"status": "backlog",
|
||||
"estimate": 5,
|
||||
"dueDate": "2026-01-02",
|
||||
"project": "proj_1766159442254_0",
|
||||
"assignee": "user_1766159442254_2",
|
||||
"reporter": "user_1766159442254_0",
|
||||
"labels": [
|
||||
"labe_1766159442254_0"
|
||||
],
|
||||
"sprint": "spri_1766159442254_0",
|
||||
"created": "2025-12-19T15:50:45.016Z",
|
||||
"updated": "2025-12-19T15:50:45.016Z"
|
||||
}
|
||||
|
|
@ -1,18 +0,0 @@
|
|||
{
|
||||
"title": "Add activity log feature",
|
||||
"description": "Socius tantillus rerum speculum testimonium cresco. Antea sufficio tendo ustilo cibus canonicus uxor utor reiciendis. Tego utroque calculus corrigo sto.\nSolvo stella stella complectus odio spiritus deorsum adipisci depromo tot. Adopto tantum porro. Cauda acceptus somniculosus pecto aptus cauda.",
|
||||
"type": "feature",
|
||||
"priority": "medium",
|
||||
"status": "todo",
|
||||
"estimate": 3,
|
||||
"dueDate": "2026-02-08",
|
||||
"project": "proj_1766159442254_0",
|
||||
"assignee": "user_1766159442254_1",
|
||||
"reporter": "user_1766159442254_2",
|
||||
"labels": [
|
||||
"labe_1766159442254_0"
|
||||
],
|
||||
"sprint": "spri_1766159442254_1",
|
||||
"created": "2025-12-19T15:50:45.016Z",
|
||||
"updated": "2025-12-19T15:50:45.016Z"
|
||||
}
|
||||
|
|
@ -1,16 +0,0 @@
|
|||
{
|
||||
"title": "Improve error handling",
|
||||
"description": "Defendo expedita audentia curatio quibusdam crur. Facere sodalitas fugiat canto. Crur aliquam voco.\nComminor ventito spectaculum blanditiis desolo paens. Ad comes tersus carus tunc candidus tabula laboriosam sed. Corpus odit cultura confero adipisci.",
|
||||
"type": "bug",
|
||||
"priority": "low",
|
||||
"status": "backlog",
|
||||
"estimate": 2,
|
||||
"dueDate": "2026-01-29",
|
||||
"project": "proj_1766159442254_0",
|
||||
"assignee": "user_1766159442254_0",
|
||||
"reporter": "user_1766159442254_1",
|
||||
"labels": [],
|
||||
"sprint": null,
|
||||
"created": "2025-12-19T15:50:45.016Z",
|
||||
"updated": "2025-12-19T15:50:45.016Z"
|
||||
}
|
||||
|
|
@ -1,18 +0,0 @@
|
|||
{
|
||||
"title": "Add user profile page",
|
||||
"description": "Tamquam capitulus voluptatum. Utrum verbera architecto talis suppellex vitiosus utilis dignissimos civitas. Sono vulgo strenuus quas conculco cursim.\nAnimus sortitus tempore beneficium sursum aestas officia. Aperte subseco amita depereo curriculum auditor arbustum aeternus laboriosam stips. Demulceo curis verbum error adfero compono sequi derelinquo subito.",
|
||||
"type": "story",
|
||||
"priority": "high",
|
||||
"status": "todo",
|
||||
"estimate": 5,
|
||||
"dueDate": "2026-01-23",
|
||||
"project": "proj_1766159442254_0",
|
||||
"assignee": "user_1766159442254_1",
|
||||
"reporter": "user_1766159442254_1",
|
||||
"labels": [
|
||||
"labe_1766159442254_0"
|
||||
],
|
||||
"sprint": "spri_1766159442254_0",
|
||||
"created": "2025-12-19T15:50:45.016Z",
|
||||
"updated": "2025-12-19T15:50:45.016Z"
|
||||
}
|
||||
|
|
@ -1,19 +0,0 @@
|
|||
{
|
||||
"title": "Optimize database queries",
|
||||
"description": "Suffoco sit tantum. Tardus annus credo denuo. Ventito degenero tenetur cruentus depono.\nCimentarius aestivus minima aestivus talis. Cruentus vesica caput. Vehemens amissio comis amiculum tandem ter tenuis virtus.",
|
||||
"type": "task",
|
||||
"priority": "medium",
|
||||
"status": "review",
|
||||
"estimate": 5,
|
||||
"dueDate": "2026-03-18",
|
||||
"project": "proj_1766159442254_0",
|
||||
"assignee": "user_1766159442254_1",
|
||||
"reporter": "user_1766159442254_1",
|
||||
"labels": [
|
||||
"labe_1766159442254_0",
|
||||
"labe_1766159442254_1"
|
||||
],
|
||||
"sprint": null,
|
||||
"created": "2025-12-19T15:50:45.016Z",
|
||||
"updated": "2025-12-19T15:50:45.016Z"
|
||||
}
|
||||
|
|
@ -1,19 +0,0 @@
|
|||
{
|
||||
"title": "Update dependency versions",
|
||||
"description": "Auxilium complectus arbor utor textilis complectus uberrime comitatus. Creo communis vindico sophismata ante comprehendo vero enim. Constans deinde officia cupiditate.\nCuppedia iusto censura strenuus arcesso. Suffoco pauper amaritudo. Aspernatur crux valens.",
|
||||
"type": "bug",
|
||||
"priority": "low",
|
||||
"status": "backlog",
|
||||
"estimate": 13,
|
||||
"dueDate": "2025-12-31",
|
||||
"project": "proj_1766159442254_0",
|
||||
"assignee": "user_1766159442254_2",
|
||||
"reporter": "user_1766159442254_2",
|
||||
"labels": [
|
||||
"labe_1766159442254_0",
|
||||
"labe_1766159442254_1"
|
||||
],
|
||||
"sprint": "spri_1766159442254_0",
|
||||
"created": "2025-12-19T15:50:45.016Z",
|
||||
"updated": "2025-12-19T15:50:45.016Z"
|
||||
}
|
||||
|
|
@ -1,18 +0,0 @@
|
|||
{
|
||||
"title": "Fix memory leak in dashboard",
|
||||
"description": "Curvo coniuratio sordeo terebro patruus bellum trucido. Stipes reiciendis sequi viduo decumbo cubo. Aperio testimonium abstergo angustus amor vinitor.\nUrbanus advoco vociferor. Summa decipio summa coerceo. Chirographum turba vos clam volo triumphus advoco tubineus.",
|
||||
"type": "task",
|
||||
"priority": "low",
|
||||
"status": "in_progress",
|
||||
"estimate": 5,
|
||||
"dueDate": "2026-02-14",
|
||||
"project": "proj_1766159442254_0",
|
||||
"assignee": "user_1766159442254_2",
|
||||
"reporter": "user_1766159442254_2",
|
||||
"labels": [
|
||||
"labe_1766159442254_0"
|
||||
],
|
||||
"sprint": "spri_1766159442254_0",
|
||||
"created": "2025-12-19T15:50:45.016Z",
|
||||
"updated": "2025-12-19T15:50:45.016Z"
|
||||
}
|
||||
|
|
@ -1,19 +0,0 @@
|
|||
{
|
||||
"title": "Add export to CSV functionality",
|
||||
"description": "Contra nam debilito ager. Synagoga vix vado. Coaegresco sequi trado aeternus tunc.\nCalco decimus utpote virtus conitor audeo vacuus circumvenio arx laboriosam. Surgo denique terebro utpote. Qui laboriosam arma tyrannus.",
|
||||
"type": "epic",
|
||||
"priority": "low",
|
||||
"status": "backlog",
|
||||
"estimate": 13,
|
||||
"dueDate": "2026-03-14",
|
||||
"project": "proj_1766159442254_0",
|
||||
"assignee": "user_1766159442254_0",
|
||||
"reporter": "user_1766159442254_1",
|
||||
"labels": [
|
||||
"labe_1766159442254_1",
|
||||
"labe_1766159442254_0"
|
||||
],
|
||||
"sprint": "spri_1766159442254_3",
|
||||
"created": "2025-12-19T15:50:45.016Z",
|
||||
"updated": "2025-12-19T15:50:45.016Z"
|
||||
}
|
||||
|
|
@ -1,19 +0,0 @@
|
|||
{
|
||||
"title": "Implement search with filters",
|
||||
"description": "Adsuesco cuius acidus atqui. Cursus porro ducimus turba verecundia sol tam benevolentia. Suadeo aduro vitium praesentium carus vapulus.\nUrbs bibo amitto angustus. Speculum careo sonitus et vitiosus vel perspiciatis adversus dapifer. Vicinus antiquus solus templum beatus occaecati.",
|
||||
"type": "epic",
|
||||
"priority": "high",
|
||||
"status": "in_progress",
|
||||
"estimate": 13,
|
||||
"dueDate": "2026-01-09",
|
||||
"project": "proj_1766159442254_0",
|
||||
"assignee": "user_1766159442254_0",
|
||||
"reporter": "user_1766159442254_2",
|
||||
"labels": [
|
||||
"labe_1766159442254_0",
|
||||
"labe_1766159442254_1"
|
||||
],
|
||||
"sprint": "spri_1766159442254_0",
|
||||
"created": "2025-12-19T15:50:45.016Z",
|
||||
"updated": "2025-12-19T15:50:45.016Z"
|
||||
}
|
||||
|
|
@ -1,19 +0,0 @@
|
|||
{
|
||||
"title": "Fix 404 page styling",
|
||||
"description": "Conservo agnosco vulnus corrumpo coniecto magni. Asporto ventito terga. Tamen vomica desino.\nSubstantia defetiscor verumtamen considero caste. Constans deserunt tabella adulescens tonsor coerceo valde atqui. Temporibus autus natus aegre crudelis angustus.",
|
||||
"type": "feature",
|
||||
"priority": "low",
|
||||
"status": "todo",
|
||||
"estimate": 2,
|
||||
"dueDate": "2026-01-26",
|
||||
"project": "proj_1766159442254_0",
|
||||
"assignee": "user_1766159442254_2",
|
||||
"reporter": "user_1766159442254_0",
|
||||
"labels": [
|
||||
"labe_1766159442254_1",
|
||||
"labe_1766159442254_0"
|
||||
],
|
||||
"sprint": "spri_1766159442254_2",
|
||||
"created": "2025-12-19T15:50:45.016Z",
|
||||
"updated": "2025-12-19T15:50:45.016Z"
|
||||
}
|
||||
|
|
@ -1,16 +0,0 @@
|
|||
{
|
||||
"title": "Add unit tests for auth module",
|
||||
"description": "Labore tenetur vinitor tersus voluptas ter solus. Cohors adulatio tutamen vorax cohibeo admoveo taedium tergo. Acies viridis tantillus virtus.\nClam inflammatio vetus voluntarius totus appono velut taedium dedecor. Cursim ratione comedo. Astrum amplus subvenio pax voluptatum dens adipiscor venio convoco.",
|
||||
"type": "bug",
|
||||
"priority": "critical",
|
||||
"status": "review",
|
||||
"estimate": 3,
|
||||
"dueDate": "2026-01-26",
|
||||
"project": "proj_1766159442254_0",
|
||||
"assignee": "user_1766159442254_2",
|
||||
"reporter": "user_1766159442254_1",
|
||||
"labels": [],
|
||||
"sprint": "spri_1766159442254_2",
|
||||
"created": "2025-12-19T15:50:45.016Z",
|
||||
"updated": "2025-12-19T15:50:45.016Z"
|
||||
}
|
||||
|
|
@ -1,7 +0,0 @@
|
|||
{
|
||||
"name": "bug",
|
||||
"color": "#ef4444",
|
||||
"description": "Something isn't working",
|
||||
"created": "2025-12-19T15:50:43.420Z",
|
||||
"updated": "2025-12-19T15:50:43.420Z"
|
||||
}
|
||||
|
|
@ -1,7 +0,0 @@
|
|||
{
|
||||
"name": "enhancement",
|
||||
"color": "#3b82f6",
|
||||
"description": "New feature or request",
|
||||
"created": "2025-12-19T15:50:43.420Z",
|
||||
"updated": "2025-12-19T15:50:43.420Z"
|
||||
}
|
||||
|
|
@ -1,10 +0,0 @@
|
|||
{
|
||||
"name": "Website Redesign",
|
||||
"key": "WEB",
|
||||
"description": "Complete overhaul of company website",
|
||||
"color": "#3b82f6",
|
||||
"status": "completed",
|
||||
"lead": "user_1766159442254_1",
|
||||
"created": "2025-12-19T15:50:43.948Z",
|
||||
"updated": "2025-12-19T15:50:43.948Z"
|
||||
}
|
||||
|
|
@ -1,9 +0,0 @@
|
|||
{
|
||||
"name": "Sprint 1",
|
||||
"startDate": "2025-11-25",
|
||||
"endDate": "2025-12-09",
|
||||
"goal": "The XML sensor is down, bypass the solid state hard drive so we can copy the SAS feed!",
|
||||
"project": "proj_1766159442254_0",
|
||||
"created": "2025-12-19T15:50:44.481Z",
|
||||
"updated": "2025-12-19T15:50:44.481Z"
|
||||
}
|
||||
|
|
@ -1,9 +0,0 @@
|
|||
{
|
||||
"name": "Sprint 2",
|
||||
"startDate": "2025-11-28",
|
||||
"endDate": "2025-12-12",
|
||||
"goal": "Try to back up the USB bus, maybe it will navigate the auxiliary protocol!",
|
||||
"project": "proj_1766159442254_0",
|
||||
"created": "2025-12-19T15:50:44.481Z",
|
||||
"updated": "2025-12-19T15:50:44.481Z"
|
||||
}
|
||||
|
|
@ -1,9 +0,0 @@
|
|||
{
|
||||
"name": "Sprint 3",
|
||||
"startDate": "2025-12-01",
|
||||
"endDate": "2025-12-15",
|
||||
"goal": "calculating the bandwidth won't do anything, we need to navigate the 1080p AGP program!",
|
||||
"project": "proj_1766159442254_0",
|
||||
"created": "2025-12-19T15:50:44.481Z",
|
||||
"updated": "2025-12-19T15:50:44.481Z"
|
||||
}
|
||||
|
|
@ -1,9 +0,0 @@
|
|||
{
|
||||
"name": "Sprint 4",
|
||||
"startDate": "2025-11-19",
|
||||
"endDate": "2025-12-03",
|
||||
"goal": "Use the cross-platform OCR interface, then you can compress the open-source card!",
|
||||
"project": "proj_1766159442254_0",
|
||||
"created": "2025-12-19T15:50:44.481Z",
|
||||
"updated": "2025-12-19T15:50:44.481Z"
|
||||
}
|
||||
|
|
@ -1,8 +0,0 @@
|
|||
{
|
||||
"name": "Regina Balistreri",
|
||||
"email": "Johathan21@gmail.com",
|
||||
"avatar": "https://placehold.co/200x200/333/fff?text=User",
|
||||
"role": "developer",
|
||||
"created": "2025-12-19T15:50:42.877Z",
|
||||
"updated": "2025-12-19T15:50:42.877Z"
|
||||
}
|
||||
|
|
@ -1,8 +0,0 @@
|
|||
{
|
||||
"name": "Kara Schmeler",
|
||||
"email": "Reinhold5@yahoo.com",
|
||||
"avatar": "https://placehold.co/200x200/333/fff?text=User",
|
||||
"role": "developer",
|
||||
"created": "2025-12-19T15:50:42.877Z",
|
||||
"updated": "2025-12-19T15:50:42.877Z"
|
||||
}
|
||||
|
|
@ -1,8 +0,0 @@
|
|||
{
|
||||
"name": "Nicholas Denesik",
|
||||
"email": "Arielle.Stamm@hotmail.com",
|
||||
"avatar": "https://placehold.co/200x200/333/fff?text=User",
|
||||
"role": "designer",
|
||||
"created": "2025-12-19T15:50:42.877Z",
|
||||
"updated": "2025-12-19T15:50:42.877Z"
|
||||
}
|
||||
Loading…
Reference in New Issue