Feature/Auth: implement user authentication #3

Merged
homeburger merged 48 commits from feature/auth into main 2026-03-22 20:52:22 -05:00
Showing only changes of commit cda10dfaa4 - Show all commits

View File

@@ -10,6 +10,7 @@ const API_URL: string = "/auth";
export const register = async (user: RegisterDto) => { export const register = async (user: RegisterDto) => {
try { try {
console.log(user);
const response = await api.post(`${API_URL}/register`, user); const response = await api.post(`${API_URL}/register`, user);
// TODO: if valid // TODO: if valid