chore(app): remove legacy-era module-platform, provider, middleware, rule and support sources

This commit is contained in:
Darko Gjorgjijoski
2026-08-21 14:15:49 +02:00
parent 10b76da90d
commit 56cb653a2d
24 changed files with 0 additions and 1418 deletions
@@ -1,36 +0,0 @@
<?php
namespace App\Platform\Modules\Http\Requests;
use Illuminate\Foundation\Http\FormRequest;
class UploadModuleRequest extends FormRequest
{
/**
* Determine if the user is authorized to make this request.
*/
public function authorize(): bool
{
return true;
}
/**
* Get the validation rules that apply to the request.
*/
public function rules(): array
{
return [
'avatar' => [
'required',
'file',
'mimes:zip',
'max:20000',
],
'module' => [
'required',
'string',
'max:100',
],
];
}
}