2019-05-28 13:48:58 +02:00
BASIC_AUTH_USERNAME = username
BASIC_AUTH_PASSWORD = password
2019-06-14 17:41:09 +02:00
2019-09-02 07:15:37 +02:00
ORD_API_URL = Url for ORD API endpoints
2019-06-14 17:41:09 +02:00
MAX_BACK_TO_BACK_DIFFERENCE = Time in minutes
2019-06-17 13:24:34 +02:00
EARLIEST_UNLOCK = Time in minutes
UI_TIMEZONE = Timezone for user interface | https://en.wikipedia.org/wiki/List_of_tz_database_time_zones | example : America/Los_Angeles
2019-06-14 17:41:09 +02:00
2019-11-26 14:00:18 +01:00
UNSCHEDULED_USE_INITIAL_TIME_SEGMENT_LENGTH = Time in minutes when first unscheduled use charge will be applied
2019-06-14 17:41:09 +02:00
UNSCHEDULED_USE_TIME_RESOLUTION = Time in minutes
2019-07-01 09:31:13 +02:00
UNSCHEDULED_USE_CHARGE_PRICE = Charge price
2019-06-14 17:41:09 +02:00
UNLOCK_0 = Price for unlocked door, first month
UNLOCK_1 = Price for unlocked door, second month
UNLOCK_2 = Price for unlocked door, third month
UNLOCK_3 = Price for unlocked door, fourth month
UNLOCK_4 = Price for unlocked door, fifth month
UNLOCK_5 = Price for unlocked door, sixth month
UNLOCK_STREAK_REPAIR_AFTER = Number of months without incidents to reset user incident level
2019-07-08 20:37:14 +02:00
BOOKING_CHANGE_PERCENTAGE_CHARGE = Percentage of hourly reate to apply for cancellation-like charges
2019-07-19 22:25:22 +02:00
2019-08-08 16:48:05 +02:00
CHARGE_BOOKING_CHANGE_UNDER_TIME = Time to booking start when booking change will be charged ( in minutes) [ Default is 1430 = 24*60 - 10; that is 24hrs - 10 minutes for booking change tracking cycle]
2019-07-19 22:25:22 +02:00
ALLOWED_BOOKING_CANCELLATION_TIME = Time from creation ( in minutes) in which cancellation is not charged
2019-07-24 07:25:29 +02:00
SEQUELIZE_LOGGING = 0 - false, 1 - true ( console logging)
2019-07-25 06:53:32 +02:00
2019-08-16 05:16:27 +02:00
DISCOUNT_LEVEL_1_HOURS = Hours requred to apply DISCOUNT_LEVEL_1_PERCENTAGE discount
DISCOUNT_LEVEL_1_PERCENTAGE = Discount to apply in percentage, if DISCOUNT_LEVEL_1_HOURS of billable hours is booked
DISCOUNT_LEVEL_2_HOURS = Hours requred to apply DISCOUNT_LEVEL_2_PERCENTAGE discount
DISCOUNT_LEVEL_2_PERCENTAGE = Discount to apply in percentage, if DISCOUNT_LEVEL_2_HOURS of billable hours is booked
DISCOUNT_PLANS = Plan names for which discount is available. Comma-separated
2019-08-31 06:11:15 +02:00
ORD_OAUTH_CLIENT_ID = Client ID for this app, created in ORD; Used to obtain OAUTH token
ORD_OAUTH_CLIENT_SECRET = Client secret for this app; Used to obtain OAUTH token
ORD_OAUTH_URL = https://identity.officernd.com/oauth/token
2019-09-05 14:52:10 +02:00
CUSTOM_FEES_PREFIXES = Array of prefixes to recognize manually added fees. Comma-separated
2019-09-10 07:21:06 +02:00
ALLOW_SENDING_FEES_FOR_CURRENT_AND_FUTURE_MONTHS = 0 - false = > Sending fees is disabled for current and future months, 1 - true = > Sending fees is never disabled
2019-10-07 15:49:03 +02:00
TRIM_DLOCK_NAMES_LENGTH = Length of names in DLOCK files that will be taken to compare with ORD member names
2019-07-25 06:53:32 +02:00
#More about pool option : http://docs.sequelizejs.com/class/lib/sequelize.js~Sequelize.html
DB_POOL_MAX_CONNECTIONS = Maximum number of connection in pool ( ex. 18)
DB_POOL_ACQUIRE = The maximum time, in milliseconds, that pool will try to get connection before throwing error ( ex. 120000)
DB_POOL_EVICT = The time interval, in milliseconds, after which sequelize-pool will remove idle connections. ( ex. 10000)