mirror of
https://github.com/freedombox/FreedomBox.git
synced 2026-01-28 08:03:36 +00:00
Get rid of tabs in the app page. Tests performed: - enable/disable app - check that links to the external site work - check that links to the external site are disabled if app is disabled - i2p functional tests pass Signed-off-by: Veiko Aasa <veiko17@disroot.org>
10 lines
228 B
Python
10 lines
228 B
Python
# SPDX-License-Identifier: AGPL-3.0-or-later
|
|
"""
|
|
URLs for the I2P module.
|
|
"""
|
|
|
|
from django.conf.urls import url
|
|
from plinth.modules.i2p import views
|
|
|
|
urlpatterns = [url(r'^apps/i2p/$', views.I2PAppView.as_view(), name='index')]
|