1
0
Fork 0
bthlabs-jsonrpc/packages/bthlabs-jsonrpc-django/testing/urls.py

16 lines
335 B
Python

# -*- coding: utf-8 -*-
from django.urls import path
from bthlabs_jsonrpc_django import JSONRPCView, is_authenticated
urlpatterns = [
path(
'rpc/private',
JSONRPCView.as_view(
auth_checks=[is_authenticated],
namespace='private',
),
),
path('rpc', JSONRPCView.as_view()),
]