mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-05 18:52:44 +01:00
34cf93b78e
* fix for blank client settings * Force all custom fields to strings * Fixes for bulk actions * Fix for client transformer * Validation for portal domain -> url * Portal Domain Validation
47 lines
1.0 KiB
PHP
47 lines
1.0 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 = [];
|
|
|
|
//$rules['name'] = 'required';
|
|
$rules['company_logo'] = 'mimes:jpeg,jpg,png,gif|max:10000'; // max 10000kb
|
|
$rules['settings'] = new ValidSettingsRule();
|
|
$rules['portal_domain'] = 'url';
|
|
return $rules;
|
|
}
|
|
|
|
|
|
}
|
|
|