JavaScript is disabled, refresh for a better experience. ambee/giterated

ambee/giterated

Git repository hosting, collaboration, and discovery for the Fediverse.

Implement Debug on all messages

Type: Fix

Amber - ⁨2⁩ years ago

parent: tbd commit: ⁨249c88e

⁨giterated-models/src/messages/issues.rs⁩ - ⁨416⁩ bytes
Raw
1 use serde::{Deserialize, Serialize};
2
3 use crate::model::repository::Repository;
4
5 #[derive(Clone, Debug, Serialize, Deserialize)]
6 pub struct IssuesCountCommand {
7 pub respository: Repository,
8 }
9
10 #[derive(Clone, Debug, Serialize, Deserialize)]
11 pub struct IssuesCountResponse {
12 pub count: u64,
13 }
14
15 #[derive(Clone, Debug, Serialize, Deserialize)]
16 pub struct IssuesLabelsCommand {
17 pub repository: Repository,
18 }
19