mirror of
https://github.com/freedombox/FreedomBox.git
synced 2026-01-28 08:03:36 +00:00
Fixes: #2136 Signed-off-by: Joseph Nuthalapati <njoseph@riseup.net> [james: Fix comment] Signed-off-by: James Valleroy <jvalleroy@mailbox.org> Reviewed-by: James Valleroy <jvalleroy@mailbox.org>
11 lines
235 B
Python
11 lines
235 B
Python
# SPDX-License-Identifier: AGPL-3.0-or-later
|
|
"""
|
|
URLs for the Tiny Tiny RSS module.
|
|
"""
|
|
|
|
from django.urls import re_path
|
|
|
|
from .views import TTRSSAppView
|
|
|
|
urlpatterns = [re_path(r'^apps/ttrss/$', TTRSSAppView.as_view(), name='index')]
|