mirror of
https://github.com/friendica/friendica
synced 2025-04-26 23:50:11 +00:00
Use router parameters in Diaspora\Receive
This commit is contained in:
parent
8af86af3d9
commit
02e08d5fbc
2 changed files with 6 additions and 17 deletions
|
@ -51,21 +51,10 @@ class Receive extends BaseModule
|
|||
throw new HTTPException\ForbiddenException(DI::l10n()->t('Access denied.'));
|
||||
}
|
||||
|
||||
$args = DI::args();
|
||||
|
||||
$type = $args->get(1);
|
||||
|
||||
switch ($type) {
|
||||
case 'public':
|
||||
self::receivePublic();
|
||||
break;
|
||||
case 'users':
|
||||
self::receiveUser($args->get(2));
|
||||
break;
|
||||
default:
|
||||
self::$logger->info('Wrong call.');
|
||||
throw new HTTPException\BadRequestException('wrong call.');
|
||||
break;
|
||||
if ($parameters['type'] === 'public') {
|
||||
self::receivePublic();
|
||||
} else if ($parameters['type'] === 'users') {
|
||||
self::receiveUser($parameters['guid']);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue