feat: Implement initial authentication, multi-environment support, and core app infrastructure.
This commit is contained in:
13
lib/core/constants/api_constants.dart
Normal file
13
lib/core/constants/api_constants.dart
Normal file
@@ -0,0 +1,13 @@
|
||||
class ApiConstants {
|
||||
ApiConstants._();
|
||||
|
||||
static const String authRegister = '/auth/register';
|
||||
static const String authLogin = '/auth/login';
|
||||
static const String authForgotPassword = '/auth/forgot-password';
|
||||
static const String authResetPassword = '/auth/reset-password';
|
||||
static const String authVerifyEmail = '/auth/verify-email';
|
||||
static const String authResendVerification = '/auth/resend-verification';
|
||||
static const String authMe = '/auth/me';
|
||||
static const String authRefresh = '/auth/refresh';
|
||||
static const String authLogout = '/auth/logout';
|
||||
}
|
||||
Reference in New Issue
Block a user