Compare commits

...

4 Commits

Author SHA1 Message Date
Ali
8dcd74e2e9 auth
All checks were successful
Build & Push Image / build-image (push) Successful in 1m57s
2026-02-24 21:10:43 +09:00
Ali
463b392fc0 Merge branch 'main' of https://git.chavokhaliz.de/admin/test 2026-02-21 21:02:07 +09:00
Ali
8b6e1cd70b Merge branch 'main' of https://git.chavokhaliz.de/admin/test 2026-02-21 21:00:28 +09:00
Ali
c14ba94a25 Update runner label to ubuntu-latest 2026-02-21 20:59:24 +09:00

View File

@@ -42,7 +42,7 @@ router.post('/login', async (req, res) => {
const { username, password } = req.body
try {
const user = await prisma.user.findUnique({
const user = await prisma.users.findUnique({
where: {
username: username
}