some Citadel endpoints

This commit is contained in:
2025-10-13 15:44:57 -04:00
parent 74a36e0b34
commit 753625ad5c
2 changed files with 66 additions and 4 deletions

View File

@@ -2,10 +2,9 @@ from flask import Blueprint
custom = Blueprint("custom", __name__)
# This implements custom endpoints
# used by other homeserver
# implementations. They do not start
# with /_matrix/
# This implements non-standard
# endpoints created by other
# homeserver implementations.
from .hammerhead import hammerhead
@@ -13,9 +12,11 @@ from .conduwuit import conduwuit
from .dendrite import dendrite
from .telodendria import telo
from .synapse import synapse
from .citadel import citadel
custom.register_blueprint(hammerhead)
custom.register_blueprint(conduwuit)
custom.register_blueprint(dendrite)
custom.register_blueprint(synapse)
custom.register_blueprint(citadel)
custom.register_blueprint(telo)