summaryrefslogtreecommitdiffstats
path: root/js/controller/ContentController.js
diff options
context:
space:
mode:
authormarco.nassabain@etu.unistra.fr <marco.nassabain@hotmail.com>2021-01-12 23:15:41 +0100
committerSean Molenaar <SMillerDev@users.noreply.github.com>2021-04-08 23:17:31 +0200
commitea4178620be71ce993144fad600647491ba1b3fb (patch)
tree7ba6dfa6b77391ef66bad88765321aa1dc1659bc /js/controller/ContentController.js
parent4a86db338dd19ccada313d22449976b44ad74631 (diff)
🎨 create ShareController and moved share logic
Signed-off-by: Marco Nassabain <marco.nassabain@hotmail.com>
Diffstat (limited to 'js/controller/ContentController.js')
-rw-r--r--js/controller/ContentController.js16
1 files changed, 0 insertions, 16 deletions
diff --git a/js/controller/ContentController.js b/js/controller/ContentController.js
index 1d043945a..457700dca 100644
--- a/js/controller/ContentController.js
+++ b/js/controller/ContentController.js
@@ -223,20 +223,4 @@ app.controller('ContentController', function (Publisher, FeedResource, ItemResou
this.activeItem = this.getFirstItem();
- this.userList = [];
-
- this.searchUsers = function(search) {
- // TODO: search === undefined 🤢 je pense pas que c'est ouf comme syntaxe
- if (search === '' || search === undefined) {
- this.userList = [];
- return;
- }
-
- // TODO: bug - requetes retardataires (regarder issues git)
- var response = ShareResource.getUsers(search);
- response.then((response) => {
- this.userList = response.ocs.data.users;
- });
- };
-
}); \ No newline at end of file