mirror of
https://github.com/Deathgarden-Rebirth/Deathgarden_Rebirth-Rewrite.git
synced 2026-09-09 03:35:14 -05:00
8 lines
237 B
PHP
8 lines
237 B
PHP
<?php
|
|
|
|
// Moderation Routes
|
|
|
|
use App\Http\Controllers\Api\ModerationController;
|
|
|
|
Route::post('check/username', [ModerationController::class, 'checkUsername']);
|
|
Route::post('check/chat', [ModerationController::class, 'checkChatMessage']); |