Skip to content

VuedaAllAuthViewAdapter

Overview

Intentionally simple parent class for all views. Only implements dispatch-by-method and simple sanity checking.

dispatch

Dispatch the incoming request to the appropriate handler method.

This method implements the core request/response lifecycle for Django REST Framework views:

  1. Wraps the incoming Django HttpRequest in a REST framework Request.
  2. Performs content negotiation, authentication, permission, and throttling checks.
  3. Resolves and calls the appropriate HTTP method handler (e.g. get(), post(), put()).
  4. Handles any exceptions raised during processing and converts them into appropriate Response objects.
  5. Finalizes and returns the response with proper rendering and headers applied.

Signature

dispatch(self, request, args, kwargs)

Parameters

NameTypeRequiredDescription
selfyes
requestyes
argsyes
kwargsyes

Source

server/vueda/user/views.py:650

Source

server/vueda/user/views.py:649

Documents matching: server v3.0.0a1.post1client v3.0.0-alpha.2