mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-10 21:22:58 +01:00
f0176b6e37
* remove jobs table * Working on notifications * Working on notifications * Fix for pdf_variables * Fixes for notification * Fixes for viewing invoice with NO company custom_fields * Fixes for company settings object creation * Working on group settings * Fixes for storing the correct currency_id on client creation * Fix for invoicetransformer * fix for store client * Update PaymentAppliedValidAmount.php (#38) * update company schema descriptions * Update PaymentAppliedValidAmount.php Co-authored-by: David Bomba <turbo124@gmail.com> * Cast invoice designs to the Hashes * Fixes for setting invoice/credit/design_ids to hashed * Fixes for quote transformer Co-authored-by: michael-hampton <michaelhamptondesign@yahoo.com>
59 lines
1.4 KiB
PHP
59 lines
1.4 KiB
PHP
<?php
|
|
/**
|
|
* Invoice Ninja (https://invoiceninja.com)
|
|
*
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
*
|
|
* @copyright Copyright (c) 2020. 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 Illuminate\Support\Facades\Log;
|
|
use Illuminate\Validation\Rule;
|
|
|
|
class UpdateCompanyRequest extends Request
|
|
{
|
|
/**
|
|
* Determine if the user is authorized to make this request.
|
|
*
|
|
* @return bool
|
|
*/
|
|
|
|
public function authorize() : bool
|
|
{
|
|
return auth()->user()->can('edit', $this->company);
|
|
}
|
|
|
|
|
|
public function rules()
|
|
{
|
|
$rules = [];
|
|
|
|
$rules['company_logo'] = 'mimes:jpeg,jpg,png,gif|max:10000'; // max 10000kb
|
|
$rules['settings'] = new ValidSettingsRule();
|
|
$rules['industry_id'] = 'integer|nullable';
|
|
$rules['size_id'] = 'integer|nullable';
|
|
$rules['country_id'] = 'integer|nullable';
|
|
$rules['work_email'] = 'email|nullable';
|
|
|
|
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;
|
|
}
|
|
|
|
protected function prepareForValidation()
|
|
{
|
|
|
|
}
|
|
|
|
}
|