Implement renting option - crawler part #64

Merged
bilal.catic merged 5 commits from implement-renting-option into master 2019-10-31 19:05:55 +01:00
Showing only changes of commit 3bb67a4db9 - Show all commits

View File

@@ -60,7 +60,8 @@ const GARAGE_PRICE_SLIDER_OPTIONS = {
const AD_TYPE = {
AD_TYPE_SALE: "SALE",
AD_TYPE_RENT: "RENT"
AD_TYPE_RENT: "RENT",
AD_TYPE_REQUEST: "REQUEST"
};
const AD_CATEGORY = {
@@ -140,7 +141,8 @@ const CRAWLER_AD_TYPE = {
NONE: 0,
ALL: 1,
ONLY_SELL: 2,
ONLY_RENT: 3
ONLY_RENT: 3,
ONLY_REQUEST: 4
};
module.exports = {