mirror of
https://gitlab.com/comunic/comunicapiv3
synced 2025-06-20 16:35:17 +00:00
Add post with PDF support
This commit is contained in:
@ -5,7 +5,7 @@
|
||||
use crate::constants::database_tables_names::POSTS_TABLE;
|
||||
use crate::data::error::{ExecError, ResultBoxError};
|
||||
use crate::data::post::{Post, PostFile, PostKind, PostPageKind, PostVisibilityLevel, PostWebLink};
|
||||
use crate::data::post::PostKind::{POST_KIND_IMAGE, POST_KIND_WEBLINK};
|
||||
use crate::data::post::PostKind::{POST_KIND_IMAGE, POST_KIND_PDF, POST_KIND_WEBLINK};
|
||||
use crate::data::user::UserID;
|
||||
use crate::helpers::{database, friends_helper};
|
||||
use crate::utils::date_utils::time;
|
||||
@ -168,6 +168,8 @@ fn db_to_post(res: &database::RowResult) -> ResultBoxError<Post> {
|
||||
image: res.get_optional_str("image_page")?,
|
||||
}),
|
||||
|
||||
"pdf" => post.kind = POST_KIND_PDF(file?),
|
||||
|
||||
_ => {}
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user