Nutomic
Nutomic
The problem is that each phpBB theme includes its own HTML template files, which can be completely distinct. If you want to make a theme work with lemmybb, you need...
Most of what you see in the templates are lines like `{{{markdown site_data.site.site_view.site.sidebar}}}`. That looks complicated but its really just using Lemmy structs directly from the api/database. That is completely...
The project is unmaintained, Im too busy working on the Lemmy backend.
You can edit files in the templates and assets folders to integrate a different theme.
Looks like the certbot commands are missing from the section "Install alongside existing Lemmy instance (native)". You can add that to your pull request by copying from the section above.
If you want to enable the api and allow client usage, you need to uncomment [these lines](https://github.com/LemmyNet/lemmyBB/blob/main/docker/nginx.conf#L62). The instructions you put look good, but maybe it would be clearer to...
I see, its because that post is stickied. The way lemmybb finds the last post for each community is by requesting a post listing of length 1 for the community,...
In the Lemmy code you can see that an endpoint requires auth if the handler method takes param [`LocalUserView`](https://github.com/LemmyNet/lemmy/blob/main/crates/api/src/comment/like.rs#L27). If auth is optional the param is [`Option`](https://github.com/LemmyNet/lemmy/blob/main/crates/api_crud/src/comment/read.rs#L16). If there is...
As far as I understand, the inbox endpoint is mandatory in ActivityPub. I fixed the error by simply returning an empty collection. https://www.w3.org/TR/activitypub/#inbox
This will probably get a bit awkward when deleting or purging an image, because that requires the alias. So then we need to store the alias in a separate, nullable...