1
0
Fork 0

Merge pull request 'make CreateIssueCommentOption and EditIssueCommentOption fields pub' (#18) from pub_fields into main

Reviewed-on: https://codeberg.org/Cyborus/forgejo-api/pulls/18
This commit is contained in:
Cyborus 2023-11-19 20:26:47 +00:00
commit cdb15605f6

View file

@ -338,10 +338,10 @@ pub struct EditIssueOption {
#[derive(serde::Serialize, Debug, PartialEq, Default)] #[derive(serde::Serialize, Debug, PartialEq, Default)]
pub struct CreateIssueCommentOption { pub struct CreateIssueCommentOption {
body: String, pub body: String,
} }
#[derive(serde::Serialize, Debug, PartialEq, Default)] #[derive(serde::Serialize, Debug, PartialEq, Default)]
pub struct EditIssueCommentOption { pub struct EditIssueCommentOption {
body: String, pub body: String,
} }