16 lines
335 B
Python
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()),
|
||
|
]
|