Merge branch '791-support-for-insurance-premiums-banner' into 780-regional-pricing
This commit is contained in:
commit
ef5e629358
1 changed files with 12 additions and 3 deletions
|
|
@ -318,9 +318,18 @@ class InsuranceController extends ApiController
|
|||
|
||||
// TODO: if this changes often, make an entity and make it manageable on CRM
|
||||
$body_types = [
|
||||
'SEDAN' => 'Sedan',
|
||||
'SUV' => 'SUV',
|
||||
'TRUCK' => 'Truck',
|
||||
[
|
||||
'id' => 'SEDAN',
|
||||
'name' => 'Sedan',
|
||||
],
|
||||
[
|
||||
'id' => 'SUV',
|
||||
'name' => 'SUV',
|
||||
],
|
||||
[
|
||||
'id' => 'TRUCK',
|
||||
'name' => 'Truck',
|
||||
]
|
||||
];
|
||||
|
||||
return new ApiResponse(true, '', [
|
||||
|
|
|
|||
Loading…
Reference in a new issue