Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/circles.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/lib/Api
diff options
context:
space:
mode:
authorMaxence Lange <maxence@artificial-owl.com>2017-10-20 19:34:36 +0300
committerMaxence Lange <maxence@artificial-owl.com>2017-10-20 19:34:36 +0300
commit2397af8a413f30685c27d81fbcbcea469112efc4 (patch)
treeb91bf1329ff5ebe4882897abf24e1ca21b06a7b7 /lib/Api
parentb39762fd12d3a155390a299326671e89fd656266 (diff)
moving files/methods around
Signed-off-by: Maxence Lange <maxence@artificial-owl.com>
Diffstat (limited to 'lib/Api')
-rw-r--r--lib/Api/v1/Circles.php18
1 files changed, 5 insertions, 13 deletions
diff --git a/lib/Api/v1/Circles.php b/lib/Api/v1/Circles.php
index dced9d7f..bbb08d9e 100644
--- a/lib/Api/v1/Circles.php
+++ b/lib/Api/v1/Circles.php
@@ -452,24 +452,16 @@ class Circles {
/**
* Get a list of objects which are shred with $circleUniqueId.
*
- * @param string|array $tagIds Tag id or array of tag ids.
- * @param string $objectType object type
- * @param int $limit Count of object ids you want to get
- * @param string $offset The last object id you already received
+ * @since 0.14.0
*
- * @return string[] array of object ids or empty array if none found
- *
- * @throws \OCP\SystemTag\TagNotFoundException if at least one of the
- * given tags does not exist
- * @throws \InvalidArgumentException When a limit is specified together with
- * multiple tag ids
+ * @param array $circleUniqueIds
*
- * @since 9.0.0
+ * @return string[] array of object ids or empty array if none found
*/
- public static function getObjectIdsForCircles($circleUniqueIds) {
+ public static function getFilesForCircles($circleUniqueIds) {
$c = self::getContainer();
return $c->query(CirclesService::class)
- ->getObjectIdsForCircles($circleUniqueIds);
+ ->getFilesForCircles($circleUniqueIds);
}
} \ No newline at end of file