1
0
mirror of https://gitlab.com/comunic/comunicapiv3 synced 2025-06-20 16:35:17 +00:00

Save new group settings in the database

This commit is contained in:
2020-06-26 09:27:32 +02:00
parent 4f2216d835
commit 3f3388cb9a
4 changed files with 34 additions and 4 deletions

View File

@ -102,7 +102,7 @@ pub fn set_settings(r: &mut HttpRequestHandler) -> RequestResult {
url: r.post_url_opt("url", false)?,
};
println!("New settings: {:#?}", new_settings);
groups_helper::set_settings(&new_settings)?;
r.success("complete implementation")
r.success("Group settings have been successfully updated!")
}