-
-
Notifications
You must be signed in to change notification settings - Fork 19
/
backend.constants.ts
22 lines (18 loc) · 990 Bytes
/
backend.constants.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
export const DEFAULT_AVATAR =
"https://thrifthub.s3.ap-southeast-1.amazonaws.com/media/images/default_avatar.png";
export const DEFAULT_PLACEHOLDER =
"https://thrifthub.s3.ap-southeast-1.amazonaws.com/media/images/default_avatar.png";
export const MOBILE_SPLASHSCREEN =
"https://thrifthub.s3.ap-southeast-1.amazonaws.com/static/frontend/splash.png";
export const DEFAULT_ICON =
"https://thrifthub.s3.ap-southeast-1.amazonaws.com/static/frontend/icon.png";
export const DEFAULT_ADAPTIVE_ICON =
"https://thrifthub.s3.ap-southeast-1.amazonaws.com/static/frontend/adaptive-icon.png";
export const PRODUCT_ENDPONT = "store";
export const CATEGORY_ENDPOINT = "category";
export const VENDOR_ENDPOINT = "vendor";
export const ORDER_ENDPOINT = "orders";
export const ORDERDETAILS_ENDPONT = "orderdetail";
export const API = "https://thrifthub-backend.herokuapp.com/api";
export const HOME_PRODUCTS_QUERY =
'store/?expand=product_images,vendor,product,category&include=vendor.name';