diff options
Diffstat (limited to 'controller/guicontroller.php')
| -rw-r--r-- | controller/guicontroller.php | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/controller/guicontroller.php b/controller/guicontroller.php index 947e23e..6d59fd5 100644 --- a/controller/guicontroller.php +++ b/controller/guicontroller.php @@ -15,6 +15,7 @@ namespace OCA\Grauphel\Controller; use \OCP\AppFramework\Controller; use \OCP\AppFramework\Http\TemplateResponse; +use \OCA\Grauphel\Lib\Client; use \OCA\Grauphel\Lib\TokenStorage; /** @@ -108,7 +109,8 @@ class GuiController extends Controller array( 'tokens' => $tokens->loadForUser( $this->user->getUid(), 'access' - ) + ), + 'client' => new Client(), ) ); $this->addNavigation($res, null); |
