ailixir-api / app /Http /Requests /Ai /ExportLigandsRequest.php
AILIXIR Bot
Auto-sync: 201d269f287526269b8ffded5f450ff36b46c740
907b200
Raw
History Blame Contribute Delete
482 Bytes
<?php
namespace App\Http\Requests\Ai;
use Illuminate\Foundation\Http\FormRequest;
class ExportLigandsRequest extends FormRequest
{
/**
* Determine if the user is authorized to make this request.
*
* @return bool
*/
public function authorize()
{
return true;
}
public function rules()
{
return [
'smiles' => 'required|string',
'format' => 'required|string|in:pdbqt,pdb,mol2',
];
}
}