-
Notifications
You must be signed in to change notification settings - Fork 3
/
defaultConfig.js
38 lines (37 loc) · 1.03 KB
/
defaultConfig.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
import moment from 'moment-timezone';
export default {
targetEl: null,
name: 'Book an interview',
email: '[email protected]',
calendar: 'Interviews',
apiToken: 'xxx',
showCredits: false,
// Display and scroll to the first upcoming event in the calendar
goToFirstEvent: false,
// 'instant' 'confirm_decline'. Controls message after booking confirmation.
bookingGraph: 'confirm_decline',
fullCalendar: {
weekends: false,
businessHours: true,
views: {
agenda: {
displayEventEnd: false,
columnFormat: 'ddd\nMMM D',
},
},
},
timekitCreateBooking: {
event: {
// Default, you may want to customize this to a specific location,
where: 'Online',
// Inserted dynamically based on the host and visitors names
// (you can replace it with a static string)
what: 'Interview',
},
customer: {
id: 'XXXXXXX user id XXXXXXXX',
timezone: moment.tz.guess(),
},
},
avatar: 'avatar.jpg', // This prevents the template from breaking
};