1
0
mirror of https://gitlab.com/comunic/comunicapiv3 synced 2024-11-22 21:39:21 +00:00

Fix visibility level when creating new posts

This commit is contained in:
Pierre HUBERT 2020-07-09 09:17:28 +02:00
parent dc5ad6aea4
commit cb47b67dc6

View File

@ -114,7 +114,7 @@ pub fn create_post(r: &mut HttpRequestHandler) -> RequestResult {
time_create: time(),
target_page,
content: Some(r.post_string_opt("content", 0, false)?),
visibility: PostVisibilityLevel::VISIBILITY_PUBLIC, // TODO : fix
visibility: PostVisibilityLevel::from_api(&r.post_string("visibility")?),
kind: PostKind::POST_KIND_TEXT,
};