Skip to content

Commit 4af2193

Browse files
committed
Merge branch 'dev' into feature/work-periods
2 parents de60cbb + 2c62417 commit 4af2193

23 files changed

+4134
-3247
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,9 @@ web_modules/
5353
# Optional eslint cache
5454
.eslintcache
5555

56+
# Optional eslint options
57+
.eslintrc.y*ml
58+
5659
# Microbundle cache
5760
.rpt2_cache/
5861
.rts2_cache_cjs/

config/default.js

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ module.exports = {
113113
// the delete resource booking entity Kafka message topic
114114
TAAS_RESOURCE_BOOKING_DELETE_TOPIC: process.env.TAAS_RESOURCE_BOOKING_DELETE_TOPIC || 'taas.resourcebooking.delete',
115115
// topics for work period service
116-
// the create rwork period entity Kafka message topic
116+
// the create work period entity Kafka message topic
117117
TAAS_WORK_PERIOD_CREATE_TOPIC: process.env.TAAS_WORK_PERIOD_CREATE_TOPIC || 'taas.workperiod.create',
118118
// the update work period entity Kafka message topic
119119
TAAS_WORK_PERIOD_UPDATE_TOPIC: process.env.TAAS_WORK_PERIOD_UPDATE_TOPIC || 'taas.workperiod.update',
@@ -143,6 +143,8 @@ module.exports = {
143143
ROLE_ID_SUBMITTER: process.env.ROLE_ID_SUBMITTER || '732339e7-8e30-49d7-9198-cccf9451e221',
144144
TYPE_ID_TASK: process.env.TYPE_ID_TASK || 'ecd58c69-238f-43a4-a4bb-d172719b9f31',
145145
DEFAULT_TIMELINE_TEMPLATE_ID: process.env.DEFAULT_TIMELINE_TEMPLATE_ID || '53a307ce-b4b3-4d6f-b9a1-3741a58f77e6',
146-
DEFAULT_TRACK_ID: process.env.DEFAULT_TRACK_ID || '9b6fc876-f4d9-4ccb-9dfd-419247628825'
146+
DEFAULT_TRACK_ID: process.env.DEFAULT_TRACK_ID || '9b6fc876-f4d9-4ccb-9dfd-419247628825',
147147

148+
// default time zone for Work Periods
149+
WORK_PERIOD_TIME_ZONE: process.env.WORK_PERIOD_TIME_ZONE || 'America/New_York'
148150
}

config/test.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,6 @@ module.exports = {
44
AUTH0_AUDIENCE: 'http://example.com',
55
AUTH0_AUDIENCE_UBAHN: 'http://example.com',
66
AUTH0_CLIENT_ID: 'fake_id',
7-
AUTH0_CLIENT_SECRET: 'fake_secret'
7+
AUTH0_CLIENT_SECRET: 'fake_secret',
8+
WORK_PERIOD_TIME_ZONE: 'America/New_York'
89
}

0 commit comments

Comments
 (0)