Removed unused method and variable

This commit is contained in:
Marcos Zuriaga 2016-10-11 23:15:45 +02:00
Родитель 3f2bb33ce3
Коммит 9c53219346
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 7D15585354D072FF
2 изменённых файлов: 14 добавлений и 14 удалений

Просмотреть файл

@ -18,21 +18,8 @@ use OCA\Passman\Utility\Utils;
class SharingACLMapper extends Mapper {
const TABLE_NAME = '*PREFIX*passman_sharing_acl';
public function __construct(IDBConnection $db, Utils $utils) {
public function __construct(IDBConnection $db) {
parent::__construct($db, 'passman_sharing_acl');
$this->utils = $utils;
}
/**
* Gets all the credential data for the given user
* @param $userId
* @param $item_guid
* @return SharingACL[]
*/
public function getCredentialPermissions(IUser $userId, $item_guid){
$sql = "SELECT * FROM ". self::TABLE_NAME ." WHERE user_id = ? AND item_guid = ?";
return $this->findEntities($sql, [$userId, $item_guid]);
}
public function createACLEntry(SharingACL $acl){

Просмотреть файл

@ -0,0 +1,13 @@
<?php
/**
*
* Date: 11/10/16
* Time: 22:40
*
* @copyright Copyright (c) 2016, Marcos Zuriaga Miguel (wolfi@wolfi.es)
* @license AGPLv3
*/
class SharingACLMapperTest {
}