1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-11-10 05:02:36 +01:00

Remove snappdf download from composer script

This commit is contained in:
David Bomba 2022-08-19 14:07:33 +10:00
parent 9781fc2fbc
commit 5c13668a37
2 changed files with 5 additions and 6 deletions

View File

@ -236,6 +236,11 @@ class Client extends BaseModel implements HasLocalePreference
return $this->hasMany(Task::class)->withTrashed();
}
public function payments()
{
return $this->hasMany(Payment::class)->withTrashed();
}
public function recurring_invoices()
{
return $this->hasMany(RecurringInvoice::class)->withTrashed();
@ -627,11 +632,6 @@ class Client extends BaseModel implements HasLocalePreference
return $defaults;
}
public function payments()
{
return $this->hasMany(Payment::class)->withTrashed();
}
public function timezone_offset()
{
$offset = 0;

View File

@ -136,7 +136,6 @@
"if [ \"${IS_DOCKER:-false}\" != \"true\" ]; then vendor/bin/snappdf download; fi"
],
"post-update-cmd": [
"vendor/bin/snappdf download",
"@php artisan vendor:publish --tag=laravel-assets --ansi --force"
],
"post-root-package-install": [