mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2024-11-28 11:43:53 -06:00
50 lines
970 B
PHP
50 lines
970 B
PHP
|
<?php
|
||
|
/**
|
||
|
* MassJournalRequest.php
|
||
|
* Copyright (C) 2016 thegrumpydictator@gmail.com
|
||
|
*
|
||
|
* This software may be modified and distributed under the terms
|
||
|
* of the MIT license. See the LICENSE file for details.
|
||
|
*/
|
||
|
|
||
|
declare(strict_types = 1);
|
||
|
/**
|
||
|
* MassJournalRequest.php
|
||
|
* Copyright (C) 2016 thegrumpydictator@gmail.com
|
||
|
*
|
||
|
* This software may be modified and distributed under the terms
|
||
|
* of the MIT license. See the LICENSE file for details.
|
||
|
*/
|
||
|
|
||
|
namespace FireflyIII\Http\Requests;
|
||
|
|
||
|
use Auth;
|
||
|
|
||
|
/**
|
||
|
* Class MassJournalRequest
|
||
|
*
|
||
|
*
|
||
|
* @package FireflyIII\Http\Requests
|
||
|
*/
|
||
|
class MassJournalRequest extends Request
|
||
|
{
|
||
|
/**
|
||
|
* @return bool
|
||
|
*/
|
||
|
public function authorize()
|
||
|
{
|
||
|
// Only allow logged in users
|
||
|
return Auth::check();
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @return array
|
||
|
*/
|
||
|
public function rules()
|
||
|
{
|
||
|
return [
|
||
|
'confirm_mass_delete.*' => 'required|belongsToUser:transaction_journals,id',
|
||
|
];
|
||
|
}
|
||
|
}
|