diff options
author | Arthur Schiwon <blizzz@arthur-schiwon.de> | 2017-10-30 15:10:21 +0100 |
---|---|---|
committer | Arthur Schiwon <blizzz@arthur-schiwon.de> | 2017-10-30 15:59:43 +0100 |
commit | d5f1cef6420c7450ce960f469fd10557ea8fcdd9 (patch) | |
tree | cdc3245e7dd4e1bb280093ff56701b52383d7bcf /lib/public | |
parent | 61db8615f4921c12c4c7090e87701b1bdbb2c186 (diff) | |
download | nextcloud-server-d5f1cef6420c7450ce960f469fd10557ea8fcdd9.tar.gz nextcloud-server-d5f1cef6420c7450ce960f469fd10557ea8fcdd9.zip |
fix comment sorter
background: we have a flat hierarchy of comments, not a tree. therefore we
can also remove again the unnecessary additions.
Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
Diffstat (limited to 'lib/public')
-rw-r--r-- | lib/public/Comments/ICommentsManager.php | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/lib/public/Comments/ICommentsManager.php b/lib/public/Comments/ICommentsManager.php index e3ea7888ffd..61633af95cd 100644 --- a/lib/public/Comments/ICommentsManager.php +++ b/lib/public/Comments/ICommentsManager.php @@ -138,28 +138,6 @@ interface ICommentsManager { public function getNumberOfUnreadCommentsForFolder($folderId, IUser $user); /** - * Get the actor types and ID that commented in the tree specified by the ID - * - * @param string $id - * @return array - * @since 13.0.0 - * - * The return array looks like this: - * - * [ - * 'users' => [ - * 'alice', - * 'bob', - * ], - * 'robots' => [ - * 'r2-d2', - * 'c-3po', - * ] - * ] - */ - public function getActorsInTree($id); - - /** * creates a new comment and returns it. At this point of time, it is not * saved in the used data storage. Use save() after setting other fields * of the comment (e.g. message or verb). |