Add services and SSH keys.
[cas.git] / src / services / urls.py
1 from django.urls import path
2 from . import views
3
4
5 urlpatterns = [
6     path('<int:pk>/ssh/authorized_keys', views.SshAuthorizedKeysView.as_view()),
7 ]