mirror of
https://github.com/nextcloud/server.git
synced 2026-04-29 18:11:41 -04:00
Merge pull request #18120 from owncloud/appframework-isessio
Add \OCP\ISession to AppFramework
This commit is contained in:
commit
77f71fbb08
1 changed files with 4 additions and 0 deletions
|
|
@ -212,6 +212,10 @@ class DIContainer extends SimpleContainer implements IAppContainer {
|
|||
return $this->getServer()->getUserSession();
|
||||
});
|
||||
|
||||
$this->registerService('OCP\\ISession', function($c) {
|
||||
return $this->getServer()->getSession();
|
||||
});
|
||||
|
||||
$this->registerService('ServerContainer', function ($c) {
|
||||
return $this->getServer();
|
||||
});
|
||||
|
|
|
|||
Loading…
Reference in a new issue