mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-06 03:02:34 +01:00
4bc92a7aa1
* fix for blank client settings * Force all custom fields to strings * Fixes for bulk actions * Fixes for company POST route.. * Change text from Bitcoin to CRYPTO * Implement default_gateway_type_id in transformer * use scopes for company filtering * Implement validation for portal_domain * Add Google API client * Add activities to company transformer
53 lines
1.3 KiB
PHP
53 lines
1.3 KiB
PHP
<?php
|
|
/**
|
|
* Invoice Ninja (https://invoiceninja.com)
|
|
*
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
*
|
|
* @copyright Copyright (c) 2019. Invoice Ninja LLC (https://invoiceninja.com)
|
|
*
|
|
* @license https://opensource.org/licenses/AAL
|
|
*/
|
|
|
|
namespace App\Http\Requests\Company;
|
|
|
|
use App\Http\Requests\Request;
|
|
use App\Http\ValidationRules\ValidSettingsRule;
|
|
use App\Models\ClientContact;
|
|
use App\Models\Company;
|
|
|
|
class StoreCompanyRequest extends Request
|
|
{
|
|
/**
|
|
* Determine if the user is authorized to make this request.
|
|
*
|
|
* @return bool
|
|
*/
|
|
|
|
public function authorize() : bool
|
|
{
|
|
return auth()->user()->can('create', Company::class);
|
|
}
|
|
|
|
public function rules()
|
|
{
|
|
//$this->sanitize();
|
|
$rules = [];
|
|
$input = $this->all();
|
|
|
|
//$rules['name'] = 'required';
|
|
$rules['company_logo'] = 'mimes:jpeg,jpg,png,gif|max:10000'; // max 10000kb
|
|
$rules['settings'] = new ValidSettingsRule();
|
|
|
|
if(isset($rules['portal_mode']) && ($rules['portal_mode'] == 'domain' || $rules['portal_mode'] == 'iframe'))
|
|
$rules['portal_domain'] = 'sometimes|url';
|
|
else
|
|
$rules['portal_domain'] = 'nullable|alpha_num';
|
|
|
|
return $rules;
|
|
}
|
|
|
|
|
|
}
|
|
|