[feat] add user and add event
This commit is contained in:
@@ -0,0 +1,8 @@
|
||||
from rest_framework.generics import CreateAPIView
|
||||
|
||||
from api.events.serializers import EventSerializer
|
||||
|
||||
|
||||
class CreateEventView(CreateAPIView):
|
||||
http_method_names = ("post",)
|
||||
serializer_class = EventSerializer
|
||||
Reference in New Issue
Block a user