blob: da193ef3ce846e4971af18438c1fea61ff779624 (
plain) (
blame)
1
2
3
4
5
6
7
|
<?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');
});
|