mirror of
https://github.com/LemmyNet/lemmy.git
synced 2024-11-22 12:21:18 +00:00
Changing name to mark_as_read
This commit is contained in:
parent
e0da787890
commit
912aafb5e4
2 changed files with 2 additions and 2 deletions
|
@ -110,7 +110,7 @@ pub struct GetPosts {
|
||||||
pub show_nsfw: Option<bool>,
|
pub show_nsfw: Option<bool>,
|
||||||
/// Whether to automatically mark fetched posts as read.
|
/// Whether to automatically mark fetched posts as read.
|
||||||
#[cfg_attr(feature = "full", ts(optional))]
|
#[cfg_attr(feature = "full", ts(optional))]
|
||||||
pub auto_mark_fetched_posts_as_read: Option<bool>,
|
pub mark_as_read: Option<bool>,
|
||||||
#[cfg_attr(feature = "full", ts(optional))]
|
#[cfg_attr(feature = "full", ts(optional))]
|
||||||
/// If true, then only show posts with no comments
|
/// If true, then only show posts with no comments
|
||||||
pub no_comments_only: Option<bool>,
|
pub no_comments_only: Option<bool>,
|
||||||
|
|
|
@ -96,7 +96,7 @@ pub async fn list_posts(
|
||||||
// If in their user settings (or as part of the API request), auto-mark fetched posts as read
|
// If in their user settings (or as part of the API request), auto-mark fetched posts as read
|
||||||
if let Some(local_user) = local_user {
|
if let Some(local_user) = local_user {
|
||||||
if data
|
if data
|
||||||
.auto_mark_fetched_posts_as_read
|
.mark_as_read
|
||||||
.unwrap_or(local_user.auto_mark_fetched_posts_as_read)
|
.unwrap_or(local_user.auto_mark_fetched_posts_as_read)
|
||||||
{
|
{
|
||||||
let post_ids = posts.iter().map(|p| p.post.id).collect::<Vec<PostId>>();
|
let post_ids = posts.iter().map(|p| p.post.id).collect::<Vec<PostId>>();
|
||||||
|
|
Loading…
Reference in a new issue