blob: 0883dbad3f84d9b4938f701bcd70864bc3ce8dc9 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
<?php
/**
* Super admin thingy cause of my current server situation -- GET because of XSS protection
*/
$app->group('/wormhole/{access_token}', function () {
$this->get('/verify/{user_id}/{session_id}', 'UserFrosting\Sprinkle\Admin\Controller\WormholeController:verify');
$this->post('/new/message/{sender_id}/{receiver_id}/', 'UserFrosting\Sprinkle\Admin\Controller\WormholeController:newMessage');
$this->get('/user/{user_id}', 'UserFrosting\Sprinkle\Admin\Controller\WormholeController:getInfo');
});
|