2016-04-23 02:33:54 -05:00
|
|
|
<?php
|
|
|
|
/**
|
2016-04-24 00:18:39 -05:00
|
|
|
* MassDeleteJournalRequest.php
|
2016-04-23 02:33:54 -05:00
|
|
|
* 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;
|
|
|
|
|
|
|
|
/**
|
2016-04-24 00:18:39 -05:00
|
|
|
* Class MassDeleteJournalRequest
|
2016-04-23 02:33:54 -05:00
|
|
|
*
|
|
|
|
*
|
|
|
|
* @package FireflyIII\Http\Requests
|
|
|
|
*/
|
2016-04-24 00:18:39 -05:00
|
|
|
class MassDeleteJournalRequest extends Request
|
2016-04-23 02:33:54 -05:00
|
|
|
{
|
|
|
|
/**
|
|
|
|
* @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',
|
|
|
|
];
|
|
|
|
}
|
|
|
|
}
|