add microsoft client id to company transformer
This commit is contained in:
parent
c0e7c399fb
commit
1323a56e13
|
|
@ -157,7 +157,6 @@ class CompanyTransformer extends EntityTransformer
|
||||||
'matomo_id' => (string) $company->matomo_id ?: '',
|
'matomo_id' => (string) $company->matomo_id ?: '',
|
||||||
'enabled_item_tax_rates' => (int) $company->enabled_item_tax_rates,
|
'enabled_item_tax_rates' => (int) $company->enabled_item_tax_rates,
|
||||||
'client_can_register' => (bool) $company->client_can_register,
|
'client_can_register' => (bool) $company->client_can_register,
|
||||||
// 'is_large' => (bool) $company->is_large,
|
|
||||||
'is_large' => (bool) $this->isLarge($company),
|
'is_large' => (bool) $this->isLarge($company),
|
||||||
'is_disabled' => (bool) $company->is_disabled,
|
'is_disabled' => (bool) $company->is_disabled,
|
||||||
'enable_shop_api' => (bool) $company->enable_shop_api,
|
'enable_shop_api' => (bool) $company->enable_shop_api,
|
||||||
|
|
@ -226,6 +225,7 @@ class CompanyTransformer extends EntityTransformer
|
||||||
'has_quickbooks_token' => $company->quickbooks ? true : false,
|
'has_quickbooks_token' => $company->quickbooks ? true : false,
|
||||||
'is_quickbooks_token_active' => $company->quickbooks?->accessTokenKey ?? false,
|
'is_quickbooks_token_active' => $company->quickbooks?->accessTokenKey ?? false,
|
||||||
'legal_entity_id' => $company->legal_entity_id ?? null,
|
'legal_entity_id' => $company->legal_entity_id ?? null,
|
||||||
|
'microsoft_client_id' => config('services.microsoft.client_id'),
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -53,7 +53,7 @@ return [
|
||||||
],
|
],
|
||||||
|
|
||||||
'microsoft' => [
|
'microsoft' => [
|
||||||
'client_id' => env('MICROSOFT_CLIENT_ID'),
|
'client_id' => env('MICROSOFT_CLIENT_ID',''),
|
||||||
'client_secret' => env('MICROSOFT_CLIENT_SECRET'),
|
'client_secret' => env('MICROSOFT_CLIENT_SECRET'),
|
||||||
'redirect' => env('MICROSOFT_REDIRECT_URI'),
|
'redirect' => env('MICROSOFT_REDIRECT_URI'),
|
||||||
],
|
],
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue