From 2e97ceef45bc1512a37e7b61e381e39922ce6c5a Mon Sep 17 00:00:00 2001 From: Ari Archer Date: Thu, 20 Jun 2024 16:24:53 +0300 Subject: [PATCH] Migrate to git.ari.lt Signed-off-by: Ari Archer --- src/aw/views.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/aw/views.py b/src/aw/views.py index e09de98..92eb72a 100644 --- a/src/aw/views.py +++ b/src/aw/views.py @@ -371,7 +371,7 @@ def mp(): def dotfiles(_: str) -> Response: """Dotfiles""" return flask.redirect( - f"https://github.com/TruncatedDinoSour/dotfiles-cleaned/{flask.request.full_path[9:]}", + f"https://git.ari.lt/ari/dotfiles-cleaned/{flask.request.full_path[9:]}", code=302, ) @@ -382,7 +382,7 @@ def dotfiles(_: str) -> Response: def gh(_: str) -> Response: """Main git account""" return flask.redirect( - f"https://github.com/TruncatedDinoSour/{flask.request.full_path[3:]}", + f"https://git.ari.lt/ari/{flask.request.full_path[3:]}", code=302, ) @@ -393,6 +393,6 @@ def gh(_: str) -> Response: def lh(_: str) -> Response: """Main git organization account""" return flask.redirect( - f"https://github.com/ari-lt/{flask.request.full_path[3:]}", + f"https://git.ari.t/ari.lt/{flask.request.full_path[3:]}", code=302, )