This repository has been archived on 2024-05-31. You can view files and clone it, but cannot push or open issues or pull requests.
2019-11-07 16:02:56 +00:00
|
|
|
"""SAMLSource API Views"""
|
|
|
|
from rest_framework.serializers import ModelSerializer
|
|
|
|
from rest_framework.viewsets import ModelViewSet
|
|
|
|
|
|
|
|
from passbook.sources.saml.models import SAMLSource
|
|
|
|
|
|
|
|
|
|
|
|
class SAMLSourceSerializer(ModelSerializer):
|
|
|
|
"""SAMLSource Serializer"""
|
|
|
|
|
|
|
|
class Meta:
|
|
|
|
|
|
|
|
model = SAMLSource
|
2019-12-31 11:51:16 +00:00
|
|
|
fields = [
|
|
|
|
"pk",
|
2020-02-20 20:33:45 +00:00
|
|
|
"issuer",
|
2019-12-31 11:51:16 +00:00
|
|
|
"idp_url",
|
|
|
|
"idp_logout_url",
|
|
|
|
"auto_logout",
|
2020-03-03 22:35:38 +00:00
|
|
|
"signing_kp",
|
2019-12-31 11:51:16 +00:00
|
|
|
]
|
2019-11-07 16:02:56 +00:00
|
|
|
|
|
|
|
|
|
|
|
class SAMLSourceViewSet(ModelViewSet):
|
|
|
|
"""SAMLSource Viewset"""
|
|
|
|
|
|
|
|
queryset = SAMLSource.objects.all()
|
|
|
|
serializer_class = SAMLSourceSerializer
|