registerRouteWithAuth method

void registerRouteWithAuth (String method, String route, Schema schema, dynamic authorize(RequestContext req, ResponseContext res, dynamic next()), dynamic action(RequestContext req, ResponseContext res))

Registers an action with authorization in this objects REST server (service) by the given method and route.

  • method the HTTP method of the route.
  • route the route to register in this object's REST server (service).
  • schema the schema to use for parameter validation.
  • authorize the authorization interceptor
  • action the action to perform at the given route.