Skip to content
This repository has been archived by the owner on Nov 25, 2020. It is now read-only.

Commit

Permalink
Do not load tasks if no user logged
Browse files Browse the repository at this point in the history
  • Loading branch information
cdujeu committed Sep 16, 2016
1 parent 595c697 commit 61ff65d
Show file tree
Hide file tree
Showing 16 changed files with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions core/src/plugins/core.tasks/js/react/PydioTasks.js
Expand Up @@ -85,6 +85,10 @@
}

static loadTasks(callback, params = null){
if(!global.pydio.user){
callback([]);
return;
}
if(params){
params['get_action'] = 'tasks_list';
}else{
Expand Down
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.

0 comments on commit 61ff65d

Please sign in to comment.