add: tags_STR endpoint with GET and DELETE

This commit is contained in:
Tobias Reisinger 2020-06-19 16:26:08 +02:00
parent 4614ba50ac
commit cb0614cf8c
6 changed files with 131 additions and 1 deletions
include/endpoints

View file

@ -6,4 +6,10 @@
void
api_v1_tags_GET(struct mg_connection *nc, struct http_message *hm, endpoint_args_t *args, endpoint_response_t *response);
void
api_v1_tags_STR_GET(struct mg_connection *nc, struct http_message *hm, endpoint_args_t *args, endpoint_response_t *response);
void
api_v1_tags_STR_DELETE(struct mg_connection *nc, struct http_message *hm, endpoint_args_t *args, endpoint_response_t *response);
#endif /* CORE_ENDPOINTS_API_V1_TAGS_H */