nbenedek 63278f0bcd
rssbridge: add option to allow public access
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>
2022-10-24 12:02:10 -07:00

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'),
]