mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-06-23 20:00:33 -04:00
resource build assets
This commit is contained in:
parent
18ae6e5369
commit
52df4708d6
@ -84,7 +84,7 @@ class TaskTransformer extends BaseTransformer
|
|||||||
} elseif(isset($item['task.billable']) && is_bool($item['task.billable'])) {
|
} elseif(isset($item['task.billable']) && is_bool($item['task.billable'])) {
|
||||||
$is_billable = $item['task.billable'];
|
$is_billable = $item['task.billable'];
|
||||||
} else {
|
} else {
|
||||||
$is_billable = false;
|
$is_billable = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
if(isset($item['task.start_date']) &&
|
if(isset($item['task.start_date']) &&
|
||||||
|
41
app/PaymentDrivers/Authorize/FDSReview.php
Normal file
41
app/PaymentDrivers/Authorize/FDSReview.php
Normal file
@ -0,0 +1,41 @@
|
|||||||
|
<?php
|
||||||
|
/**
|
||||||
|
* Invoice Ninja (https://invoiceninja.com).
|
||||||
|
*
|
||||||
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
||||||
|
*
|
||||||
|
* @copyright Copyright (c) 2024. Invoice Ninja LLC (https://invoiceninja.com)
|
||||||
|
*
|
||||||
|
* @license https://www.elastic.co/licensing/elastic-license
|
||||||
|
*/
|
||||||
|
|
||||||
|
namespace App\PaymentDrivers\Authorize;
|
||||||
|
|
||||||
|
use App\Models\PaymentHash;
|
||||||
|
use Illuminate\Bus\Queueable;
|
||||||
|
use Illuminate\Support\Facades\App;
|
||||||
|
use Illuminate\Queue\SerializesModels;
|
||||||
|
use Illuminate\Queue\InteractsWithQueue;
|
||||||
|
use Illuminate\Contracts\Queue\ShouldQueue;
|
||||||
|
use Illuminate\Foundation\Bus\Dispatchable;
|
||||||
|
|
||||||
|
/*Multi Mailer implemented*/
|
||||||
|
|
||||||
|
class FDSReview implements ShouldQueue
|
||||||
|
{
|
||||||
|
use Dispatchable;
|
||||||
|
use InteractsWithQueue;
|
||||||
|
use Queueable;
|
||||||
|
use SerializesModels;
|
||||||
|
|
||||||
|
public $tries = 1; //number of retries
|
||||||
|
public $deleteWhenMissingModels = true;
|
||||||
|
|
||||||
|
public function __construct(private string $transaction_reference, private PaymentHash $payment_hash, private string $db)
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
public function handle()
|
||||||
|
{
|
||||||
|
}
|
||||||
|
}
|
109
public/build/assets/app-042e859e.js
vendored
109
public/build/assets/app-042e859e.js
vendored
File diff suppressed because one or more lines are too long
109
public/build/assets/app-bfac6a32.js
vendored
Normal file
109
public/build/assets/app-bfac6a32.js
vendored
Normal file
File diff suppressed because one or more lines are too long
@ -9,7 +9,7 @@
|
|||||||
]
|
]
|
||||||
},
|
},
|
||||||
"resources/js/app.js": {
|
"resources/js/app.js": {
|
||||||
"file": "assets/app-042e859e.js",
|
"file": "assets/app-bfac6a32.js",
|
||||||
"imports": [
|
"imports": [
|
||||||
"_index-08e160a7.js",
|
"_index-08e160a7.js",
|
||||||
"__commonjsHelpers-725317a4.js"
|
"__commonjsHelpers-725317a4.js"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user