27 lines
1.3 KiB
Dart
27 lines
1.3 KiB
Dart
|
|
// lib/core/api/api_endpoints.dart
|
||
|
|
class ApiEndpoints {
|
||
|
|
// Change this to your desired backend base URL (local or UAT)
|
||
|
|
// For local Django dev use: "http://127.0.0.1:8000/api"
|
||
|
|
// For UAT: "https://uat.eventifyplus.com/api"
|
||
|
|
static const String baseUrl = "https://uat.eventifyplus.com/api";
|
||
|
|
|
||
|
|
// Auth
|
||
|
|
static const String register = "$baseUrl/user/register/";
|
||
|
|
static const String login = "$baseUrl/user/login/";
|
||
|
|
static const String logout = "$baseUrl/user/logout/";
|
||
|
|
static const String status = "$baseUrl/user/status/";
|
||
|
|
|
||
|
|
// Events
|
||
|
|
static const String eventTypes = "$baseUrl/events/type-list/"; // list of event types
|
||
|
|
static const String eventsByPincode = "$baseUrl/events/pincode-events/"; // pincode-events
|
||
|
|
static const String eventDetails = "$baseUrl/events/event-details/"; // event-details
|
||
|
|
static const String eventImages = "$baseUrl/events/event-images/"; // event-images
|
||
|
|
static const String eventsByCategory = "$baseUrl/events/events-by-category/";
|
||
|
|
static const String eventsByMonth = "$baseUrl/events/events-by-month-year/";
|
||
|
|
|
||
|
|
// Bookings
|
||
|
|
// static const String bookEvent = "$baseUrl/events/book-event/";
|
||
|
|
// static const String userSuccessBookings = "$baseUrl/events/event/user-success-bookings/";
|
||
|
|
// static const String userCancelledBookings = "$baseUrl/events/event/user-cancelled-bookings/";
|
||
|
|
}
|