[MOD] Remove some comments

This commit is contained in:
hatkid 2023-10-29 14:34:17 +01:00
parent 16471049e2
commit c8b529d94b
1 changed files with 2 additions and 2 deletions

View File

@ -87,7 +87,8 @@ ROUTE_IMPL(RouteAdminTokens, path, argp)
for (i = 0; i < ArraySize(tokens); i++) for (i = 0; i < ArraySize(tokens); i++)
{ {
/* NOTE: Sounds like a very unwise idea. */ /* TODO: Move this inside it's own `RegTokenJSON`
* function */
char *tokenname = ArrayGet(tokens, i); char *tokenname = ArrayGet(tokens, i);
char *creator; char *creator;
UInt64 created; UInt64 created;
@ -143,7 +144,6 @@ ROUTE_IMPL(RouteAdminTokens, path, argp)
DbListFree(tokens); DbListFree(tokens);
} }
finish: finish:
/* TODO */
UserUnlock(user); UserUnlock(user);
return response; return response;
} }