Skip to content
Snippets Groups Projects
Commit 2dd32436 authored by juanf's avatar juanf
Browse files

SSDM-3733 : New V3 API Call to retrieve session information

SVN: 36720
parent f687d6b7
No related branches found
No related tags found
No related merge requests found
...@@ -145,6 +145,18 @@ define([ 'jquery', 'util/Json' ], function(jquery, stjsUtil) { ...@@ -145,6 +145,18 @@ define([ 'jquery', 'util/Json' ], function(jquery, stjsUtil) {
}); });
} }
this.getSessionInformation = function() {
var thisFacade = this;
return thisFacade._private.ajaxRequest({
url : openbisUrl,
data : {
"method" : "getSessionInformation",
"params" : [ thisFacade._private.sessionToken ]
},
returnType : "SessionInformation"
});
}
this.createSpaces = function(creations) { this.createSpaces = function(creations) {
var thisFacade = this; var thisFacade = this;
return thisFacade._private.ajaxRequest({ return thisFacade._private.ajaxRequest({
......
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