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

47 lines
1.0 KiB
PHP
Raw Normal View History

2016-04-23 02:33:54 -05:00
<?php
/**
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
* Creative Commons Attribution-ShareAlike 4.0 International License.
*
* See the LICENSE file for details.
2016-04-23 02:33:54 -05:00
*/
declare(strict_types = 1);
2016-04-23 02:33:54 -05:00
namespace FireflyIII\Http\Requests;
/**
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
2016-09-16 05:07:45 -05:00
return auth()->check();
2016-04-23 02:33:54 -05:00
}
/**
* @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
];
}
}