Temporarily disable lemmy as connection is refused

This commit is contained in:
Daoud Clarke 2023-05-20 22:26:33 +01:00
parent 8851d86ff4
commit 01bf4c21df

View file

@ -74,7 +74,9 @@ class Curation(BaseModel, Generic[T]):
def create_router(index_path: str) -> APIRouter:
router = APIRouter(prefix="/user", tags=["user"])
community_id = get_community_id()
# TODO: reinstate
# community_id = get_community_id()
community_id = 0
@router.post("/register")
def user_register(register: Register) -> Response: