mirror of
https://github.com/freedombox/FreedomBox.git
synced 2026-01-28 08:03:36 +00:00
These modifications are copied after the wordpress public access configurator. Signed-off-by: nbenedek <contact@nbenedek.me> Reviewed-by: Sunil Mohan Adapa <sunil@medhas.org>
14 lines
281 B
Python
14 lines
281 B
Python
# SPDX-License-Identifier: AGPL-3.0-or-later
|
|
"""
|
|
URLs for the RSS-Bridge module.
|
|
"""
|
|
|
|
from django.urls import re_path
|
|
|
|
from .views import RSSBridgeAppView
|
|
|
|
urlpatterns = [
|
|
re_path(r'^apps/rssbridge/$', RSSBridgeAppView.as_view(app_id='rssbridge'),
|
|
name='index'),
|
|
]
|