app.blueprints.base.WelcomeResource

class app.blueprints.base.WelcomeResource(api=None, *args, **kwargs)

Bases: flask_restx.resource.Resource

Attributes

WelcomeResource.decorators

The canonical way to decorate class-based views is to decorate the return value of as_view().

WelcomeResource.method_decorators

WelcomeResource.methods

A list of methods this view can handle.

WelcomeResource.provide_automatic_options

Setting this disables or force-enables the automatic options handling.

WelcomeResource.representations

Methods

WelcomeResource.__init__([api])

WelcomeResource.as_view(name, *class_args, ...)

Converts the class into an actual view function that can be used with the routing system.

WelcomeResource.dispatch_request(*args, **kwargs)

Subclasses have to override this method to implement the actual view function code.

WelcomeResource.get()

WelcomeResource.validate_payload(func)

Perform a payload validation on expected model if necessary