LemmyNet / lemmy

🐀 A link aggregator and forum for the fediverse
https://join-lemmy.org
GNU Affero General Public License v3.0
12.95k stars 859 forks source link

Adding a show_read override to GetPosts. #4846

Closed dessalines closed 2 weeks ago

dessalines commented 2 weeks ago
dullbananas commented 2 weeks ago

show_read: Some(false) doesn't override the user setting, which could cause confusion. Use Option<bool> in PostQuery.

dessalines commented 2 weeks ago

I've updated to make all of the post and comment query params as options.