mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-10 21:22:58 +01:00
f8ea4c0d0f
* Working on CompanyUser route * CompanyUser update route * tests for updating a company user * Fixes for exchange currency rate * Move slack and google analytics fields into company table * implement Design API
39 lines
851 B
PHP
39 lines
851 B
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\Design;
|
|
|
|
use App\Http\Requests\Request;
|
|
use App\Models\Design;
|
|
|
|
class StoreDesignRequest extends Request
|
|
{
|
|
/**
|
|
* Determine if the user is authorized to make this request.
|
|
*
|
|
* @return bool
|
|
*/
|
|
|
|
public function authorize() : bool
|
|
{
|
|
return auth()->user()->isAdmin();
|
|
}
|
|
|
|
public function rules()
|
|
{
|
|
return [
|
|
//'name' => 'required',
|
|
'name' => 'required|unique:designs,name,null,null,company_id,'.auth()->user()->companyId(),
|
|
'design' => 'required',
|
|
];
|
|
}
|
|
}
|