summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/generated/methods.rs4
-rw-r--r--swagger.v1.json5
2 files changed, 3 insertions, 6 deletions
diff --git a/src/generated/methods.rs b/src/generated/methods.rs
index c2404c9..96a3e18 100644
--- a/src/generated/methods.rs
+++ b/src/generated/methods.rs
@@ -7066,7 +7066,7 @@ impl crate::Forgejo {
}
/// Get user settings
- pub async fn get_user_settings(&self) -> Result<Vec<UserSettings>, ForgejoError> {
+ pub async fn get_user_settings(&self) -> Result<UserSettings, ForgejoError> {
let request = self.get("user/settings").build()?;
let response = self.execute(request).await?;
match response.status().as_u16() {
@@ -7081,7 +7081,7 @@ impl crate::Forgejo {
pub async fn update_user_settings(
&self,
body: UserSettingsOptions,
- ) -> Result<Vec<UserSettings>, ForgejoError> {
+ ) -> Result<UserSettings, ForgejoError> {
let request = self.patch("user/settings").json(&body).build()?;
let response = self.execute(request).await?;
match response.status().as_u16() {
diff --git a/swagger.v1.json b/swagger.v1.json
index 0de864a..e706eb8 100644
--- a/swagger.v1.json
+++ b/swagger.v1.json
@@ -23164,10 +23164,7 @@
"UserSettings": {
"description": "UserSettings",
"schema": {
- "type": "array",
- "items": {
- "$ref": "#/definitions/UserSettings"
- }
+ "$ref": "#/definitions/UserSettings"
}
},
"WatchInfo": {