From 1a2cc80149f2bb9f656315c891cb7caf8353f519 Mon Sep 17 00:00:00 2001 From: Jason Park <93040528+JasonNotJson@users.noreply.github.com> Date: Mon, 13 Nov 2023 21:55:23 +0900 Subject: [PATCH] feat: adding micro app (#386) --- lib/stacks/presentation.ts | 1 + src/lambda/sync-career/index.py | 1 - 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/stacks/presentation.ts b/lib/stacks/presentation.ts index 09d85e1c6..d3c478112 100644 --- a/lib/stacks/presentation.ts +++ b/lib/stacks/presentation.ts @@ -29,6 +29,7 @@ export class WasedaTimePresentationLayer extends PresentationLayer { monoApp.addMicroApp('campus'); monoApp.addMicroApp('feeds'); monoApp.addMicroApp('forum'); + monoApp.addMicroApp('career'); monoApp.microApps.feeds.addEnvironment('DEPLOY_KEY', FEEDS_DEPLOY_KEY); diff --git a/src/lambda/sync-career/index.py b/src/lambda/sync-career/index.py index 1ea661539..33103f863 100644 --- a/src/lambda/sync-career/index.py +++ b/src/lambda/sync-career/index.py @@ -29,7 +29,6 @@ def sync_career(key): 'created_at': dt_now, 'company': json_content['company'], 'job_description': json_content['job_description'], - 'responsibilities': json_content['responsibilities'], 'qualifications': json_content['qualifications'], 'appeal': json_content['appeal'], 'min_hours': json_content['min_hours'],