MantisBase v0.3.7
Loading...
Searching...
No Matches
entity_routes.h
Go to the documentation of this file.
1
6#ifndef MANTISBASE_ENTITY_ROUTES_H
7#define MANTISBASE_ENTITY_ROUTES_H
8
9#include "../types.h"
10
11namespace mb {
17
19}
20
21#endif // MANTISBASE_ENTITY_ROUTES_H
router.h
Definition auth.h:16
HandlerFn entityGetOneHandler()
Definition entity_routes_handlers.cpp:226
HandlerFn entityGetManyHandler()
Definition entity_routes_handlers.cpp:232
HandlerWithContentReaderFn entityPostHandler()
Definition entity_routes_handlers.cpp:238
HandlerWithContentReaderFn entityPatchHandler()
Definition entity_routes_handlers.cpp:244
void registerAdminEntityRoutes()
Definition entity_routes_handlers.cpp:256
std::function< void(MantisRequest &, MantisResponse &, MantisContentReader &)> HandlerWithContentReaderFn
‍Route Handler function with content reader shorthand
Definition types.h:40
std::function< void(MantisRequest &, MantisResponse &)> HandlerFn
‍Route Handler function shorthand
Definition types.h:36
HandlerFn entityDeleteHandler()
Definition entity_routes_handlers.cpp:250