60 lines
1.4 KiB
Dart
60 lines
1.4 KiB
Dart
String kBaseUrl = 'https://api.yimaruacademy.com';
|
|
|
|
String kCoursesUrl = 'courses';
|
|
|
|
String kRegisterUrl = 'register';
|
|
|
|
String kCoursePractice = 'by-owner';
|
|
|
|
String kUserBaseUrl = 'api/v1/user';
|
|
|
|
String kVerifyOtpUrl = 'verify-otp';
|
|
|
|
String kResendOtpUrl = 'resend-otp';
|
|
|
|
String kGetUserUrl = 'user-profile';
|
|
|
|
String kSubcoursesUrl = 'sub-courses';
|
|
|
|
String kCompleteLessonUrl = 'complete';
|
|
|
|
String kResetPassword = 'resetPassword';
|
|
|
|
String kCourseCategoryUrl = 'categories';
|
|
|
|
String kRequestResetCode = 'sendResetCode';
|
|
|
|
String kPublishedVideos = 'videos/published';
|
|
|
|
String kCoursePracticeQuestions = 'questions';
|
|
|
|
String kUpdateProfileImage = 'profile-picture';
|
|
|
|
String kRefreshTokenUrl = 'api/v1/auth/refresh';
|
|
|
|
String kLoginUrl = 'api/v1/auth/customer-login';
|
|
|
|
String kPracticeBaseUrl = 'api/v1/question-sets';
|
|
|
|
String kProfileStatusUrl = 'is-profile-completed';
|
|
|
|
String kCourseBaseUrl = 'api/v1/course-management';
|
|
|
|
String kCoursePracticeQuestion = 'api/v1/questions';
|
|
|
|
String kLessonProgressUrl = 'api/v1/progress/videos';
|
|
|
|
String kGoogleAuthUrl = 'api/v1/auth/google/android';
|
|
|
|
String kCourseProgressUrl = 'api/v1/progress/courses';
|
|
|
|
String kAssessmentsUrl = 'api/v1/assessment/questions';
|
|
|
|
String kEmptyImagePath = '/data/user/0/com.yimaru.lms.app/app_flutter';
|
|
|
|
String kSampleVideoUrl =
|
|
'https://flutter.github.io/assets-for-api-docs/assets/videos/bee.mp4';
|
|
|
|
String kServerClientId =
|
|
'574860813475-n5o17gpprdqmhcml99tiqhafb17rob0r.apps.googleusercontent.com';
|