Browse Source

add the organization_slug update

Olivier Massot 2 months ago
parent
commit
87e9b3b964
1 changed files with 1 additions and 0 deletions
  1. 1 0
      src/Service/HelloAsso/ConnectionService.php

+ 1 - 0
src/Service/HelloAsso/ConnectionService.php

@@ -232,6 +232,7 @@ class ConnectionService extends ApiRequestService
                 'refresh_token' => $data['refresh_token'] ?? null,
                 'refresh_token' => $data['refresh_token'] ?? null,
                 'token_type' => $data['token_type'] ?? 'Bearer',
                 'token_type' => $data['token_type'] ?? 'Bearer',
                 'expires_in' => $data['expires_in'] ?? null,
                 'expires_in' => $data['expires_in'] ?? null,
+                'organization_slug' => $data['organization_slug'] ?? null,
             ];
             ];
         } catch (\JsonException $e) {
         } catch (\JsonException $e) {
             throw new HttpException(500, 'Failed to parse authentication response: '.$e->getMessage(), $e);
             throw new HttpException(500, 'Failed to parse authentication response: '.$e->getMessage(), $e);