rearrange rawContent / content

This commit is contained in:
Philipp Holzer 2019-05-18 20:07:56 +02:00
parent 2906a9031b
commit 68fdc7215e
No known key found for this signature in database
GPG key ID: D8365C3D36B77D90

View file

@ -3,6 +3,7 @@
namespace Friendica\Module\Notifications;
use Friendica\BaseModule;
use Friendica\Core\L10n;
use Friendica\Core\NotificationsManager;
use Friendica\Core\System;
use Friendica\Network\HTTPException;
@ -12,11 +13,7 @@ use Friendica\Network\HTTPException;
*/
class Notify extends BaseModule
{
/**
* @throws HTTPException\InternalServerErrorException
* @throws HTTPException\UnauthorizedException
*/
public static function rawContent()
public static function init()
{
if (!local_user()) {
throw new HTTPException\UnauthorizedException(L10n::t('Permission denied.'));
@ -38,6 +35,11 @@ class Notify extends BaseModule
$a->internalRedirect();
}
}
public static function rawContent()
{
$a = self::getApp();
// @TODO: Replace with parameter from router
if ($a->argc > 2 && $a->argv[1] === 'mark' && $a->argv[2] === 'all') {
@ -63,8 +65,6 @@ class Notify extends BaseModule
$a = self::getApp();
// @TODO: Replace with parameter from router
if (($a->argc > 0) && ($a->argv[0] == 'notify')) {
$a->internalRedirect('notifications/system');
}
$a->internalRedirect('notifications/system');
}
}