- cross-posted to:
- lemmy_mod_tools@discuss.online
- cross-posted to:
- lemmy_mod_tools@discuss.online
Hey all,
I’m the author of lemmyverse.net and I’ve recently been working on a new moderation tool called Lemmy Modder. https://modder.lemmyverse.net/
Currently, it supports user registration/approvals and content report management. I offer it either as a hosted app (which is currently only compatible with Lemmy 0.18 instances) or a package that you can run alongside your Lemmy instance (using Docker-Compose)
Feel free to give it a go and send any feedback my way :) https://github.com/tgxn/lemmy-modder
Edit for a note: This tool does not save, proxy or store any of your user credentials or data to me, it is only ever stored locally in your browser. I also do not use any website tracking tools. 👍
I love that you can see when a report was created! Can reports be sorted by the time they were reported, like oldest to newest (or vice versa)? Or sort by community?
not yet, but improved sorting is on the cards.
the main issue is the lemmy api’s don’t support most of this, so it’ll have to be implemented locally. for example, ListPostReports only allows:
community_id
,limit
,page
, andunresolved_only
as parameters: https://join-lemmy.org/api/interfaces/ListPostReports.htmlPR’s need to be submitted to Lemmy core to add this functionality, so for now I do a infinite load as you scroll.
I was wondering if that might be the case. Hopefully future Lemmy updates will allow for this.