1
0
Fork 0

add CreateHookOptionConfig required properties as fields

This commit is contained in:
Cyborus 2024-04-26 13:34:08 -04:00
parent 25794c3e1d
commit fd0c22a1c6
No known key found for this signature in database
2 changed files with 11 additions and 0 deletions

View file

@ -500,6 +500,8 @@ pub enum CreateHookOptionType {
/// required are "content_type" and "url" Required
#[derive(Debug, Clone, PartialEq, serde::Serialize, serde::Deserialize)]
pub struct CreateHookOptionConfig {
pub content_type: String,
pub url: url::Url,
#[serde(flatten)]
pub additional: BTreeMap<String, String>,
}

View file

@ -16942,9 +16942,18 @@
"CreateHookOptionConfig": {
"description": "CreateHookOptionConfig has all config options in it\nrequired are \"content_type\" and \"url\" Required",
"type": "object",
"required": ["content_type", "url"],
"additionalProperties": {
"type": "string"
},
"properties": {
"content_type": {
"type": "string"
},
"url": {
"type": "string"
}
},
"x-go-package": "code.gitea.io/gitea/modules/structs"
},
"CreateIssueCommentOption": {