From 5622839ffa081805014f64d42d21a7b14368f999 Mon Sep 17 00:00:00 2001 From: Hide_D Date: Sat, 28 Sep 2024 13:09:51 +0000 Subject: [PATCH] =?UTF-8?q?feat:=20=EC=84=A4=EB=AC=B8=20=EA=B2=8C=EC=8B=9C?= =?UTF-8?q?=EC=9E=90=20=ED=91=9C=EC=8B=9C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- hwe/ts/PageVote.vue | 4 ++++ hwe/ts/defs/API/Vote.ts | 1 + 2 files changed, 5 insertions(+) diff --git a/hwe/ts/PageVote.vue b/hwe/ts/PageVote.vue index c85e9c4e..cf2fc070 100644 --- a/hwe/ts/PageVote.vue +++ b/hwe/ts/PageVote.vue @@ -23,6 +23,10 @@ }}개 선택 가능 ) + + + 게시자 + {{ currentVote.voteInfo.opener ?? '[SYSTEM]' }} diff --git a/hwe/ts/defs/API/Vote.ts b/hwe/ts/defs/API/Vote.ts index 54a7712a..f0dddd5b 100644 --- a/hwe/ts/defs/API/Vote.ts +++ b/hwe/ts/defs/API/Vote.ts @@ -3,6 +3,7 @@ import type { ValidResponse } from "@/util/callSammoAPI"; export type VoteInfo = { id: number; title: string; + opener?: string; multipleOptions: number; startDate: string; endDate?: string;