We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Still to be written! Hang with me here, this is tiring stuff.
$app->post('/login', 'userLogin'); $app->post('/join', 'userJoin');
$app->post('/friend/add', 'addFriend'); $app->post('/friend/accept', 'acceptFriend'); $app->post('/friend/decline', 'declineFriend'); $app->post('/friend/remove', 'removeFriend'); $app->post('/friend', 'getFriends');
$app->delete('/user', 'deleteUser'); $app->put('/user', 'updateUser'); $app->get('/user/:id', 'getUser');
$app->post('/users/string', 'stringSearch');