Skip to content

Commit fdc7cfc

Browse files
committed
2026S 수정
1 parent cbc5557 commit fdc7cfc

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

backend/src/api/apply.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ const newApply = async (ctx: any): Promise<void> => {
3636
phone: joi.string().required(),
3737
applyType: joi
3838
.string()
39-
.valid('developer', 'designer', 'planner')
39+
.valid('developer', 'designer')
4040
.required(),
4141

4242
introduction: joi.string(),
@@ -162,7 +162,7 @@ const editApply = async (ctx: any): Promise<void> => {
162162
phone: joi.string().required(),
163163
applyType: joi
164164
.string()
165-
.valid('developer', 'designer', 'planner')
165+
.valid('developer', 'designer')
166166
.required(),
167167

168168
introduction: joi.string(),

backend/src/db/models/ApplyForm/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ export interface IApplyFormDocument extends mongoose.Document {
66
stdNo: number;
77
dept: string;
88
phone: string;
9-
applyType: 'developer' | 'designer' | 'planner';
9+
applyType: 'developer' | 'designer';
1010

1111
introduction: string;
1212
workToDo: string;

frontend/pages/apply.vue

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@
159159

160160
<div class="form-item">
161161
<p class="form-desc">
162-
SPARCS에 들어온다면 어떤 일을 하고 싶으신가요?
162+
SPARCS는 카이스트 총학생회 산하 특별기구로, 학내 구성원들을 위한 다양한 서비스를 개발하는 단체입니다. SPARCS에서 함께 만들고 싶은 학우 대상 서비스 아이디어나, 기존 서비스에서 개선하고 싶은 점이 있다면 자유롭게 제시해 주세요.
163163
</p>
164164
<div class="control">
165165
<textarea
@@ -181,7 +181,7 @@
181181

182182
<div class="form-item">
183183
<p class="form-desc">
184-
개발, 디자인, 서비스 기획 및 운영과 관련된 경험이나 관심을 가지게 된 계기가 있다면 자유롭게 작성해주세요.
184+
서비스 개발과 관련된 경험이나 관심을 가지게 된 계기가 있다면 자유롭게 작성해주세요.
185185
(다른 사람들과 협업을 통해 서비스 제작 등의 프로젝트를 진행해 본 경험이 있다면, 해당 경험을 위주로 작성해주세요.)
186186
</p>
187187
<div class="control">
@@ -261,13 +261,13 @@
261261

262262
<hr />
263263

264-
<!-- <div class="form-item">
264+
<div class="form-item">
265265
<p class="form-desc">
266266
면접은 3월 6일부터 3월 8일 사이에 진행됩니다. (단 단체 사정에 따라 일요일에는 면접을 진행하지 않을 수 있습니다)
267267
<br />
268268
아래 링크에 방문하시어 대면 면접 참여를 원하시는 시간을 선택해주세요.
269269
<br />
270-
<a href="https://calendly.com/casio-sparcs/2025-fall-recruit" target="_blank">면접 가능 시간 입력</a>
270+
<a href="https://calendly.com/kwabang-sparcs/2026-spring-sparcs-recruit" target="_blank">면접 가능 시간 입력</a>
271271
<p class="comment">
272272
<br />
273273
*) 직군 별로 면접 가능 시간이 상이하니, 지원하고자 하는 직군의 면접 가능 시간을 반드시 확인 후 신청해주세요.
@@ -297,7 +297,7 @@
297297
아니오, 입력하지 않았습니다.
298298
</label>
299299
</div>
300-
</div> -->
300+
</div>
301301

302302
<div v-if="wordsAreShort" class="form-footer-item">
303303
<span class="length-warning"

frontend/pages/index.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
<br />변동 시 SPARCS 공식 홈페이지 및 페이스북, 인스타그램을 통해
1717
알려드리겠습니다.
1818
<br /><u>2026년 3월 3일 오후 7시 ~ 오후 9시와 2026년 3월 4일 오후 7시 ~ 오후 9시</u>에 진행되는 오픈동방에 참여하시면 동방을 구경하면서 현역 회원과 이야기를 나눠보실 수 있습니다.
19-
<!-- <br /><a href="https://url.kr/vw9q99">FAQ 바로가기</a> -->
19+
<br /><a href="https://sparcs.notion.site/30ec25603b0b801c947cebb1120d576f?v=30ec25603b0b810fa50c000cbcd43fd5&pvs=73">FAQ 바로가기</a>
2020
</div>
2121
<div class="notification has-text-left">
2222
<template v-if="!beforeopen && !overdue">

0 commit comments

Comments
 (0)