commit
8c621972b9
|
|
@ -1 +1 @@
|
|||
5.12.17
|
||||
5.12.18
|
||||
|
|
@ -228,6 +228,7 @@ use Laracasts\Presenter\PresentableTrait;
|
|||
* @property-read int|null $users_count
|
||||
* @property-read \Illuminate\Database\Eloquent\Collection<int, \App\Models\Vendor> $vendors
|
||||
* @property-read int|null $vendors_count
|
||||
* @property-read \Illuminate\Database\Eloquent\Collection<int, \App\Models\Location> $locations
|
||||
* @property-read \Illuminate\Database\Eloquent\Collection<int, \App\Models\Webhook> $webhooks
|
||||
* @method static \Illuminate\Database\Eloquent\Builder|Company where($query)
|
||||
* @method static \Illuminate\Database\Eloquent\Builder|Company find($query)
|
||||
|
|
|
|||
|
|
@ -226,7 +226,6 @@ class CompanyTransformer extends EntityTransformer
|
|||
'has_quickbooks_token' => $company->quickbooks ? true : false,
|
||||
'is_quickbooks_token_active' => $company->quickbooks?->accessTokenKey ?? false,
|
||||
'legal_entity_id' => $company->legal_entity_id ?? null,
|
||||
'microsoft_client_id' => Ninja::isSelfHost() ? config('services.microsoft.client_id') : '',
|
||||
];
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -17,8 +17,8 @@ return [
|
|||
'require_https' => env('REQUIRE_HTTPS', true),
|
||||
'app_url' => rtrim(env('APP_URL', ''), '/'),
|
||||
'app_domain' => env('APP_DOMAIN', 'invoicing.co'),
|
||||
'app_version' => env('APP_VERSION', '5.12.17'),
|
||||
'app_tag' => env('APP_TAG', '5.12.17'),
|
||||
'app_version' => env('APP_VERSION', '5.12.18'),
|
||||
'app_tag' => env('APP_TAG', '5.12.18'),
|
||||
'minimum_client_version' => '5.0.16',
|
||||
'terms_version' => '1.0.1',
|
||||
'api_secret' => env('API_SECRET', false),
|
||||
|
|
|
|||
|
|
@ -44,7 +44,7 @@ return [
|
|||
|
||||
// 'queue' => env('SCOUT_QUEUE', true),
|
||||
'queue' => [
|
||||
'connection' => 'redis',
|
||||
'connection' => env('QUEUE_CONNECTION', 'sync'),
|
||||
'queue' => 'scout'
|
||||
],
|
||||
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
<!DOCTYPE html>
|
||||
<html data-report-errors="{{ $report_errors }}" data-rc="{{ $rc }}" data-user-agent="{{ $user_agent }}" data-login="{{ $login }}" data-signup="{{ $signup }}" data-white-label="{{ $white_label }}">
|
||||
<html data-report-errors="{{ $report_errors }}" data-rc="{{ $rc }}" data-user-agent="{{ $user_agent }}" data-login="{{ $login }}" data-signup="{{ $signup }}" data-white-label="{{ $white_label }}" data-microsoft-client-id="{{ config('services.microsoft.client_id') }}">
|
||||
<head>
|
||||
<!-- Source: https://github.com/invoiceninja/invoiceninja -->
|
||||
<!-- Version: {{ config('ninja.app_version') }} -->
|
||||
|
|
|
|||
Loading…
Reference in New Issue