Skip to content
Snippets Groups Projects
Commit b1fc2409 authored by Juan Fuentes's avatar Juan Fuentes
Browse files

SSDM-8698 : isSessionActive function from v3 missing

parent da2721ee
No related branches found
No related tags found
No related merge requests found
...@@ -2045,6 +2045,17 @@ define([ 'jquery', 'util/Json', 'as/dto/datastore/search/DataStoreSearchCriteria ...@@ -2045,6 +2045,17 @@ define([ 'jquery', 'util/Json', 'as/dto/datastore/search/DataStoreSearchCriteria
}); });
} }
this.isSessionActive = function() {
var thisFacade = this;
return thisFacade._private.ajaxRequest({
url : openbisUrl,
data : {
"method" : "isSessionActive",
"params" : [ thisFacade._private.sessionToken ]
}
});
}
this.getDataStoreFacade = function() { this.getDataStoreFacade = function() {
var dataStoreCodes = []; var dataStoreCodes = [];
for (var i = 0; i < arguments.length; i++) { for (var i = 0; i < arguments.length; i++) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment