allow multiple instances of gitlab to be configured

This commit is contained in:
2024-03-17 21:34:03 +01:00
parent 34f6eac006
commit df71e1073c
8 changed files with 80 additions and 39 deletions
+2 -2
View File
@@ -2,7 +2,7 @@ use serde::{Deserialize, Serialize};
#[derive(Serialize, Debug)]
pub struct WorkPackageWriterAssignee {
pub(crate) href: String,
pub(crate) href: Option<String>,
}
#[derive(Serialize, Debug)]
pub struct WorkPackageWriter {
@@ -10,7 +10,7 @@ pub struct WorkPackageWriter {
#[serde(alias = "type")]
pub(crate) work_type: String,
pub(crate) description: DescriptionWriter,
pub assignee: Option<WorkPackageWriterAssignee>,
pub assignee: WorkPackageWriterAssignee,
}
#[derive(Serialize, Debug)]