We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d18ec75 commit 7fc466aCopy full SHA for 7fc466a
src/domain/github.rs
@@ -36,6 +36,7 @@ pub struct GitHubSyncPartial {
36
)]
37
#[table_name = "githubuser"]
38
pub struct GitHubUser {
39
+ #[serde(serialize_with = "super::unsigned")]
40
pub id: i32,
41
pub login: String,
42
}
@@ -156,6 +157,7 @@ pub struct IssueComment {
156
157
#[serde(serialize_with = "super::unsigned")]
158
159
pub fk_issue: i32,
160
161
pub fk_user: i32,
162
pub body: String,
163
pub created_at: NaiveDateTime,
0 commit comments