summaryrefslogtreecommitdiff
path: root/server/core/App.php
diff options
context:
space:
mode:
Diffstat (limited to 'server/core/App.php')
-rwxr-xr-xserver/core/App.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/server/core/App.php b/server/core/App.php
index e3c9c22..6970e5f 100755
--- a/server/core/App.php
+++ b/server/core/App.php
@@ -22,7 +22,7 @@ class App{
$this->tokenPost = NULL;
$this->tokenClass = new genTokenOptions($args);
- $this->openstack = new OpenStack\OpenStack([]);
+ $this->openstack = new OpenStack\OpenStack(['authUrl' => $args["authUrl"]]);
$this->pluginsApi = plugin_api::getInstance();
$this->errorClass = new errorManagement($this);
$this->output = array();
@@ -38,7 +38,7 @@ class App{
}
public function checkToken(){
- $this->tokenClass->checkToken();
+ return $this->tokenClass->checkToken();
}
public function getLibClass($service){