From a1bf18850460880adfd4229b24415a32a3d783da Mon Sep 17 00:00:00 2001 From: Jason Volk Date: Thu, 18 Dec 2025 16:53:28 +0000 Subject: [PATCH] Update some links to project documentation. Signed-off-by: Jason Volk --- src/service/admin/create.rs | 2 +- src/service/admin/grant.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/service/admin/create.rs b/src/service/admin/create.rs index 06900b2d..1f2f7100 100644 --- a/src/service/admin/create.rs +++ b/src/service/admin/create.rs @@ -175,7 +175,7 @@ pub async fn create_admin_room(services: &Services) -> Result { .build_and_append_pdu( PduBuilder::state(String::new(), &RoomTopicEventContent { topic_block: TopicContentBlock::default(), - topic: format!("Manage {} | Run commands prefixed with `!admin` | Run `!admin -h` for help | Documentation: https://github.com/matrix-construct/tuwunel/", services.config.server_name), + topic: format!("Manage {} | Run commands prefixed with `!admin` | Run `!admin -h` for help | Documentation: https://matrix-construct.github.io/tuwunel", services.config.server_name), }), server_user, &room_id, diff --git a/src/service/admin/grant.rs b/src/service/admin/grant.rs index 6368078a..12c61b5f 100644 --- a/src/service/admin/grant.rs +++ b/src/service/admin/grant.rs @@ -145,7 +145,7 @@ pub async fn make_user_admin(&self, user_id: &UserId) -> Result { if self.services.server.config.admin_room_notices { let welcome_message = String::from( - "## Thank you for trying out tuwunel!\n\nTuwunel is a continuation of conduwuit which was technically a hard fork of Conduit.\n\nHelpful links:\n> GitHub Repo: https://github.com/matrix-construct/tuwunel\n> Documentation: https://github.com/matrix-construct/tuwunel\n> Report issues: https://github.com/matrix-construct/tuwunel/issues\n\nFor a list of available commands, send the following message in this room: `!admin --help`" + "## Thank you for trying out tuwunel!\n\nTuwunel is a continuation of conduwuit which was technically a hard fork of Conduit.\n\nHelpful links:\n> GitHub Repo: https://github.com/matrix-construct/tuwunel\n> Documentation: https://matrix-construct.github.io/tuwunel\n> Report issues: https://github.com/matrix-construct/tuwunel/issues\n\nFor a list of available commands, send the following message in this room: `!admin --help`" ); // Send welcome message