mirror of
https://git.friendi.ca/friendica/friendica-addons.git
synced 2024-11-20 16:23:41 +00:00
Merge pull request #917 from nupplaphil/task/reduce_app_deps
[windowsphonepush] - Switch Authentication call
This commit is contained in:
commit
07143841d2
1 changed files with 5 additions and 1 deletions
|
@ -27,8 +27,10 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
use Friendica\App;
|
use Friendica\App;
|
||||||
|
use Friendica\BaseObject;
|
||||||
use Friendica\Content\Text\BBCode;
|
use Friendica\Content\Text\BBCode;
|
||||||
use Friendica\Content\Text\HTML;
|
use Friendica\Content\Text\HTML;
|
||||||
|
use Friendica\App\Authentication;
|
||||||
use Friendica\Core\Hook;
|
use Friendica\Core\Hook;
|
||||||
use Friendica\Core\L10n;
|
use Friendica\Core\L10n;
|
||||||
use Friendica\Core\Logger;
|
use Friendica\Core\Logger;
|
||||||
|
@ -473,7 +475,9 @@ function windowsphonepush_login(App $a)
|
||||||
die('This api requires login');
|
die('This api requires login');
|
||||||
}
|
}
|
||||||
|
|
||||||
Session::setAuthenticatedForUser($a, $record);
|
/** @var Authentication $authentication */
|
||||||
|
$authentication = BaseObject::getClass(Authentication::class);
|
||||||
|
$authentication->setForUser($a, $record);
|
||||||
$_SESSION["allow_api"] = true;
|
$_SESSION["allow_api"] = true;
|
||||||
Hook::callAll('logged_in', $a->user);
|
Hook::callAll('logged_in', $a->user);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue