Made mobile register and verify otp and submit personal info apis and added interest type images in the seeder

This commit is contained in:
2026-01-23 17:56:46 +05:30
parent 834d16a76e
commit 112fdab040
8 changed files with 174 additions and 26 deletions

View File

@@ -296,7 +296,7 @@ export class HostService {
async verifyHostOtp(email: string, otp: string): Promise<boolean> {
const user = await this.prisma.user.findUnique({
where: { emailAddress: email },
where: { emailAddress: email, isActive: true },
select: {
id: true,
emailAddress: true,