Files
Woka_Native_iOS/WOKA/Constants K/StoryBoardID.swift
BilalKhanWDI 3c69db0032 - Added send OTP api
- Added verify  OTP api
- Modified the flow
- Made a authfunc to handle the type of user and the language selected
- Added OTP fields combine logic. Also handled the otp blank checks.
- Added API for intrestes get
2024-05-07 19:33:29 +05:30

41 lines
1008 B
Swift

//
// StoryBoard.swift
// WOKA
//
// Created by Bilal on 26/04/2024.
//
import Foundation
extension K{
struct StoryBoardID{
struct OnBoarding{
static let splashVC = "SplashVC"
static let onBoardVC = "OnBoardVC"
static let selectAgeVC = "SelectAgeVC"
}
struct Authentication{
static let emailVC = "EmailVC"
static let oTPVC = "OTPVC"
static let userDetailsRegisterVC = "UserDetailsRegisterVC"
static let userIntrestVC = "UserIntrestVC"
static let selectAvatarVC = "SelectAvatarVC"
static let loginVC = "LoginVC"
static let resetPassUserNameVC = "ResetPassUserNameVC"
static let newPasswordVC = "NewPasswordVC"
}
struct Home{
static let homeVC = "HomeVC"
}
struct CustomAlerts{
static let alertCustomVC = "AlertCustomVC"
}
}
}