mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-11 05:32:39 +01:00
d430600e1e
* Fixes for datatables * Implement a BaseModel * Working on reusable header data model * Working on adding session variables * Clean up header data * Random Data Seeder * working on searching datatables across relationships. * Working on transforming primary keys between client and server facinglogic * Updated assets
30 lines
498 B
PHP
30 lines
498 B
PHP
<?php
|
|
|
|
namespace App\Http\Requests\Client;
|
|
|
|
use App\Http\Requests\Request;
|
|
use App\Utils\Traits\MakesHash;
|
|
|
|
class CreateAccountRequest extends Request
|
|
{
|
|
use MakesHash;
|
|
/**
|
|
* Determine if the user is authorized to make this request.
|
|
*
|
|
* @return bool
|
|
*/
|
|
|
|
public function entity()
|
|
{
|
|
parent::entity(Client::class, $this->decodePrimaryKey(request()))
|
|
}
|
|
|
|
|
|
|
|
public function authorize()
|
|
{
|
|
return ! auth()->user(); //todo permissions
|
|
}
|
|
|
|
|
|
} |