feat: default labels preset for Capytal's workflow
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user