refactor: convert auth register to Server Action

- Add src/app/actions/auth.ts with registerUser
- Update RegisterForm to use Server Action
- Remove api/auth/register route
This commit is contained in:
2026-02-28 11:01:13 +01:00
parent b815202529
commit 7134c069d7
4 changed files with 33 additions and 72 deletions

View File

@@ -14,6 +14,7 @@
| `POST /api/komga/libraries/[libraryId]/scan` | `scanLibrary()` | ✅ Done |
| `POST /api/komga/config` | `saveKomgaConfig()` | ✅ Done |
| `PUT /api/user/password` | `changePassword()` | ✅ Done |
| `POST /api/auth/register` | `registerUser()` | ✅ Done |
---