firefly-iii/app/Http/Requests/MassEditJournalRequest.php

47 lines
1015 B
PHP
Raw Normal View History

2016-04-23 02:33:54 -05:00
<?php
declare(strict_types = 1);
2016-05-20 01:57:45 -05:00
2016-04-23 02:33:54 -05:00
/**
2016-05-20 01:57:45 -05:00
* MassEditJournalRequest.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.
*/
namespace FireflyIII\Http\Requests;
use Auth;
/**
2016-04-24 00:18:39 -05:00
* Class MassEditJournalRequest
2016-04-23 02:33:54 -05:00
*
*
* @package FireflyIII\Http\Requests
*/
2016-04-24 00:18:39 -05:00
class MassEditJournalRequest 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 [
2016-04-24 00:18:39 -05:00
'description.*' => 'required|min:1,max:255',
'source_account_id.*' => 'numeric|belongsToUser:accounts,id',
'destination_account_id.*' => 'numeric|belongsToUser:accounts,id',
'revenue_account' => 'max:255',
'expense_account' => 'max:255',
2016-04-23 02:33:54 -05:00
];
}
}