mirror of
				https://gitlab.com/comunic/comunicapiv3
				synced 2025-11-04 01:24:04 +00:00 
			
		
		
		
	Fix visibility level when creating new posts
This commit is contained in:
		@@ -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,
 | 
			
		||||
    };
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user