feat: upgrade AI prompts to v2 specification with grounding and injection shield

This commit is contained in:
mstfyldz
2026-08-14 00:52:41 +03:00
parent f1457b02ca
commit fab80e05a0
8 changed files with 257 additions and 45 deletions
+12
View File
@@ -0,0 +1,12 @@
import { Router } from 'express';
import { register, checkDevice } from '../controllers/auth.controller';
const router = Router();
// POST /api/auth/register — E-posta + şifre ile kayıt
router.post('/register', register);
// POST /api/auth/check-device — Cihazın daha önce trial kullanıp kullanmadığını kontrol et
router.post('/check-device', checkDevice);
export default router;