diff options
author | Bernhard Posselt <dev@bernhard-posselt.com> | 2014-12-16 19:07:14 +0100 |
---|---|---|
committer | Bernhard Posselt <dev@bernhard-posselt.com> | 2014-12-17 17:40:52 +0100 |
commit | 236632702cf7fe68cc9ad1dcfcc463e0d4c14d64 (patch) | |
tree | 17acbbe2628c91836fdf662832cbaa1929f036eb /lib/public | |
parent | a641bb75926ba20befe1d4bfb75c4a8025684f69 (diff) | |
download | nextcloud-server-236632702cf7fe68cc9ad1dcfcc463e0d4c14d64.tar.gz nextcloud-server-236632702cf7fe68cc9ad1dcfcc463e0d4c14d64.zip |
add a isLoggedIn method to the usersession and deprecate the isLoggedIn method on the api
Diffstat (limited to 'lib/public')
-rw-r--r-- | lib/public/appframework/iappcontainer.php | 3 | ||||
-rw-r--r-- | lib/public/iusersession.php | 9 |
2 files changed, 11 insertions, 1 deletions
diff --git a/lib/public/appframework/iappcontainer.php b/lib/public/appframework/iappcontainer.php index 3621d69a542..2270b17c5b7 100644 --- a/lib/public/appframework/iappcontainer.php +++ b/lib/public/appframework/iappcontainer.php @@ -31,7 +31,7 @@ use OCP\IContainer; * * This container interface provides short cuts for app developers to access predefined app service. */ -interface IAppContainer extends IContainer{ +interface IAppContainer extends IContainer { /** * used to return the appname of the set application @@ -57,6 +57,7 @@ interface IAppContainer extends IContainer{ function registerMiddleWare($middleWare); /** + * @deprecated use IUserSession->isLoggedIn() * @return boolean */ function isLoggedIn(); diff --git a/lib/public/iusersession.php b/lib/public/iusersession.php index db4abe150d2..4c5b4d1ba51 100644 --- a/lib/public/iusersession.php +++ b/lib/public/iusersession.php @@ -3,7 +3,9 @@ * ownCloud * * @author Bart Visscher + * @author Bernhard Posselt * @copyright 2013 Bart Visscher bartv@thisnet.nl + * @copyright 2014 Bernhard Posselt <dev@bernhard-posselt.com> * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE @@ -62,4 +64,11 @@ interface IUserSession { * @return \OCP\IUser */ public function getUser(); + + /** + * Checks wether the user is logged in + * + * @return bool if logged in + */ + public function isLoggedIn(); } |