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

bugfix

parent 833dcac7
Branches
Tags
No related merge requests found
......@@ -15,7 +15,7 @@ class CliOAuth2Client {
public function __construct(object $config) {
$this->id = $config->id;
$this->secretHash = $config->secret;
$this->scope = $config->scope;
$this->scope = explode(" ", $config->scope);
$this->audience = $config->audience;
}
......
......@@ -74,4 +74,4 @@ cliClients:
- id: gms_cli
secret: 2a97516c354b68848cdbd8f54a226a0a55b21ed138e207ad6c5cbb9c00aa5aea
scope: "read:gms write:gms read:rap"
audience: gms
\ No newline at end of file
audience: [gms]
\ 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