Skip to content
Snippets Groups Projects
Commit c2fa6ce7 authored by Sonia Zorba's avatar Sonia Zorba
Browse files

bugfix

parent 833dcac7
No related branches found
No related tags found
No related merge requests found
...@@ -15,7 +15,7 @@ class CliOAuth2Client { ...@@ -15,7 +15,7 @@ class CliOAuth2Client {
public function __construct(object $config) { public function __construct(object $config) {
$this->id = $config->id; $this->id = $config->id;
$this->secretHash = $config->secret; $this->secretHash = $config->secret;
$this->scope = $config->scope; $this->scope = explode(" ", $config->scope);
$this->audience = $config->audience; $this->audience = $config->audience;
} }
......
...@@ -74,4 +74,4 @@ cliClients: ...@@ -74,4 +74,4 @@ cliClients:
- id: gms_cli - id: gms_cli
secret: 2a97516c354b68848cdbd8f54a226a0a55b21ed138e207ad6c5cbb9c00aa5aea secret: 2a97516c354b68848cdbd8f54a226a0a55b21ed138e207ad6c5cbb9c00aa5aea
scope: "read:gms write:gms read:rap" scope: "read:gms write:gms read:rap"
audience: gms audience: [gms]
\ No newline at end of file \ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment