From 3a39b2aac2f1b399ee9cbb045c1c085fddf658f9 Mon Sep 17 00:00:00 2001 From: syuilo Date: Wed, 1 Feb 2017 04:04:18 +0900 Subject: [PATCH] Refactor: Improve readability --- src/api/service/github.ts | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/api/service/github.ts b/src/api/service/github.ts index e1a465894..b9804c292 100644 --- a/src/api/service/github.ts +++ b/src/api/service/github.ts @@ -29,14 +29,15 @@ module.exports = async (app: express.Application) => { }); handler.on('issues', event => { + const info = event.payload; let title: string; - switch (event.payload.action) { + switch (info.action) { case 'opened': title = 'Issueが立ちました'; break; case 'closed': title = 'Issueが閉じられました'; break; case 'reopened': title = 'Issueが開きました'; break; default: return; } - const text = `${title}: ${event.payload.issue.number}「${event.payload.issue.title}」\n${event.payload.issue.html_url}`; + const text = `${title}: ${info.issue.number}「${info.issue.title}」\n${info.issue.html_url}`; post(text); }); };