feat: default labels preset for Capytal's workflow

This commit is contained in:
Guz
2024-09-18 18:09:26 -03:00
parent 469f9d99d7
commit 8219cf746c
6 changed files with 257 additions and 30 deletions

View File

@@ -42,6 +42,18 @@ in {
default = "https://localhost:${toString cfg.settings.server.HTTP_PORT}";
};
};
project = {
PROJECT_BOARD_BASIC_KANBAN_TYPE = mkOption {
type = listOf str;
defaut = ["To Do" "In Progress" "Done"];
apply = t: initList t;
};
PROJECT_BOARD_BUG_TRIAGE_TYPE = mkOption {
type = listOf str;
defaut = ["Needs Triage" "High Priority" "Low Priority" "Closed"];
apply = t: initList t;
};
};
repository = {
DEFAULT_REPO_UNITS = mkOption {
type = listOf str;