diff options
author | Lukas Reschke <lukas@statuscode.ch> | 2014-04-06 22:24:30 +0200 |
---|---|---|
committer | Lukas Reschke <lukas@statuscode.ch> | 2014-04-06 22:24:30 +0200 |
commit | 592371f3672b097987480c2365deee6996820372 (patch) | |
tree | d8ab376d258a3ae31c87f531fec1b13e51b70177 | |
parent | d962f18e3f82ac1e65a67cee1054c02aafb7a388 (diff) | |
parent | 1b55c312e5929499e09714dc8155065b03c7deaa (diff) | |
download | nextcloud-server-592371f3672b097987480c2365deee6996820372.tar.gz nextcloud-server-592371f3672b097987480c2365deee6996820372.zip |
Merge pull request #8064 from owncloud/remove-not-existing-functions
Removed two unused functions
-rw-r--r-- | lib/private/ocs/cloud.php | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/lib/private/ocs/cloud.php b/lib/private/ocs/cloud.php index 06d6a8eb4b0..c8bb9425f1a 100644 --- a/lib/private/ocs/cloud.php +++ b/lib/private/ocs/cloud.php @@ -99,31 +99,4 @@ class OC_OCS_Cloud { ); return new OC_OCS_Result($data); } - - public static function getUserPublickey($parameters) { - - if(OC_User::userExists($parameters['user'])) { - // calculate the disc space - // TODO - return new OC_OCS_Result(array()); - } else { - return new OC_OCS_Result(null, 300); - } - } - - public static function getUserPrivatekey($parameters) { - $user = OC_User::getUser(); - if(OC_User::isAdminUser($user) or ($user==$parameters['user'])) { - - if(OC_User::userExists($user)) { - // calculate the disc space - $txt = 'this is the private key of '.$parameters['user']; - echo($txt); - } else { - return new OC_OCS_Result(null, 300, 'User does not exist'); - } - } else { - return new OC_OCS_Result('null', 300, 'You donĀ“t have permission to access this ressource.'); - } - } } |