File tree Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -7,7 +7,9 @@ use super::schema::*;
7
7
pub struct NewPoll < ' a > {
8
8
pub fk_issue : i32 ,
9
9
pub fk_initiator : i32 ,
10
+ //#[serde(serialize_with = "super::unsigned")]
10
11
pub fk_initiating_comment : i32 ,
12
+ //#[serde(serialize_with = "super::unsigned")]
11
13
pub fk_bot_tracking_comment : i32 ,
12
14
pub poll_question : & ' a str ,
13
15
pub poll_created_at : NaiveDateTime ,
@@ -38,8 +40,10 @@ pub struct Poll {
38
40
pub struct NewFcpProposal < ' a > {
39
41
pub fk_issue : i32 ,
40
42
pub fk_initiator : i32 ,
43
+ //#[serde(serialize_with = "super::unsigned")]
41
44
pub fk_initiating_comment : i32 ,
42
45
pub disposition : & ' a str ,
46
+ //#[serde(serialize_with = "super::unsigned")]
43
47
pub fk_bot_tracking_comment : i32 ,
44
48
pub fcp_start : Option < NaiveDateTime > ,
45
49
pub fcp_closed : bool ,
You can’t perform that action at this time.
0 commit comments