mirror of
https://github.com/freedombox/FreedomBox.git
synced 2026-06-10 11:00:22 +00:00
This was meant to be used by the mobile client. But it is in unmaintained and unusable state. We can re-introduce the API when mobile client is back in action. See: https://github.com/freedombox/FreedomBox/pull/1215 [Joseph] This API is not called by the mobile client, so it is safe to remove. Reviewed-by: Joseph Nuthalapati <njoseph@riseup.net> Signed-off-by: Sunil Mohan Adapa <sunil@medhas.org>
14 lines
305 B
Python
14 lines
305 B
Python
# SPDX-License-Identifier: AGPL-3.0-or-later
|
|
"""
|
|
URLs for the plinth api for android app.
|
|
"""
|
|
|
|
from django.urls import re_path
|
|
from stronghold.decorators import public
|
|
|
|
from plinth.modules.api import views
|
|
|
|
urlpatterns = [
|
|
re_path(r'^api/(?P<version>[0-9]+)/shortcuts/?$', public(views.shortcuts)),
|
|
]
|