feat: try to get user data

This commit is contained in:
Bart van der Braak 2024-02-01 13:23:57 +01:00
parent 39a36462bb
commit 482ffd7b85
42 changed files with 383 additions and 227 deletions

View file

@ -1,71 +0,0 @@
import {
ArrowDown,
ArrowRight,
ArrowUp,
CheckCircled,
Circle,
CrossCircled,
QuestionMarkCircled,
Stopwatch
} from "radix-icons-svelte";
export const labels = [
{
value: "bug",
label: "Bug"
},
{
value: "feature",
label: "Feature"
},
{
value: "documentation",
label: "Documentation"
}
];
export const statuses = [
{
value: "backlog",
label: "Backlog",
icon: QuestionMarkCircled
},
{
value: "todo",
label: "Todo",
icon: Circle
},
{
value: "in progress",
label: "In Progress",
icon: Stopwatch
},
{
value: "done",
label: "Done",
icon: CheckCircled
},
{
value: "canceled",
label: "Canceled",
icon: CrossCircled
}
];
export const priorities = [
{
label: "Low",
value: "low",
icon: ArrowDown
},
{
label: "Medium",
value: "medium",
icon: ArrowRight
},
{
label: "High",
value: "high",
icon: ArrowUp
}
];