From 8d12e318539090e056879f4d506c212185d4486a Mon Sep 17 00:00:00 2001 From: Matthew DeAbreu Date: Mon, 10 Jul 2023 13:54:16 -0700 Subject: [PATCH] add inbox permission api permission allows access to the API which can be used to manipulate the Lemmy instance (login, create user, etc) but the instance will not take part in federation. To take part in federation other instances need to `post` to the url `/inbox` --- manifest.toml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/manifest.toml b/manifest.toml index c289040..6f71cf0 100644 --- a/manifest.toml +++ b/manifest.toml @@ -62,12 +62,19 @@ ram.runtime = "50M" [resources.permissions] main.url = "/" + api.url = "/api" api.allowed = "visitors" api.auth_header = false api.show_tile = false api.protected = true + inbox.url = "/inbox" + inbox.allowed = "visitors" + inbox.auth_header = false + inbox.show_tile = false + inbox.protected = true + [resources.apt] packages = "postgresql espeak"