mirror of
https://github.com/freedombox/FreedomBox.git
synced 2026-01-21 07:55:00 +00:00
This is to follow up with the upstream change: https://blog.luanti.org/2024/10/13/Introducing-Our-New-Name/. Rename Minetest to Luanti in: - App name - App description - Clients' name - Docstrings - Also update the donation and client download links to point to the new domain. - Make the app button point to /apps/luanti while continuing to serve /apps/minetest in case somebody has it bookmarked. Closes: #2521 Signed-off-by: Benedek Nagy <contact@nbenedek.me> [sunil: Rename the old URL to index-old to avoid duplicates] Signed-off-by: Sunil Mohan Adapa <sunil@medhas.org> Reviewed-by: Sunil Mohan Adapa <sunil@medhas.org>
14 lines
346 B
Python
14 lines
346 B
Python
# SPDX-License-Identifier: AGPL-3.0-or-later
|
|
"""
|
|
URLs for the minetest module.
|
|
"""
|
|
|
|
from django.urls import re_path
|
|
|
|
from plinth.modules.minetest.views import MinetestAppView
|
|
|
|
urlpatterns = [
|
|
re_path(r'^apps/minetest/$', MinetestAppView.as_view(), name='index-old'),
|
|
re_path(r'^apps/luanti/$', MinetestAppView.as_view(), name='index'),
|
|
]
|