blob: 76069782fb22cf93e05d0c6075c44f515a89e51d (
plain) (
blame)
1
2
3
4
5
6
7
8
|
<?php
/**
* Super admin thingy cause of my current server situation
*/
$app->group('/wormhole/{access_token}', function () {
$this->get('/verify/{user_id}/{session_id}', 'UserFrosting\Sprinkle\Admin\Controller\WormholeController:verify');
$this->get('/user/{user_id}', 'UserFrosting\Sprinkle\Admin\Controller\WormholeController:getInfo');
});
|