halfway commit to allow collaboration

This commit is contained in:
2025-09-28 05:58:29 -04:00
parent b79d3ac2cf
commit af8371ed84
34 changed files with 4418 additions and 1223 deletions

View File

@@ -2,6 +2,7 @@ import {
getAllUsersFrom,
getUserInformation,
createUser,
getUserId,
} from "../services/userService";
import { CreateUserInput } from "../validators/userValidator";
@@ -16,3 +17,7 @@ export async function fetchAllUsers(instanceId: string) {
export async function createNewUser(data: CreateUserInput) {
return await createUser(data);
}
export async function fetchUserId(username: string) {
return await getUserId(username);
}