fix(swagger): UserSettings
should not be a list
This commit is contained in:
parent
9830fb4578
commit
37a84e9f7a
2 changed files with 3 additions and 6 deletions
|
@ -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() {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue