This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class MyCustomView(APIView): | |
""" | |
This is a custom view that can be anything at all. | |
It's not using a serializer class, but I can define my own parameters. | |
Cet exemple démontre l'utilisation de caractères unicode | |
""" | |
def get(self, *args, **kwargs): | |
""" |
NewerOlder