Refactor Gitea client and improve issue handling

Update the authorization header format in the Gitea client. Enhance issue details in work package creation and make `number` field public in the `Issue` struct.
This commit is contained in:
2024-11-14 14:22:39 +01:00
parent 696fd15cfa
commit 7b6cc33ecb
3 changed files with 3 additions and 3 deletions

View File

@@ -7,7 +7,7 @@ use url::Url;
#[derive(Debug, Deserialize)]
pub struct Issue {
pub id: u64,
number: u64,
pub number: u64,
pub title: String,
pub body: String,
pub repository: Repository,