Skip to content

Commit

Permalink
hotfix: progress, completed 0으로 설정하여 생성
Browse files Browse the repository at this point in the history
  • Loading branch information
kmer1024 committed Dec 13, 2024
1 parent a99ecc3 commit e09ae76
Show file tree
Hide file tree
Showing 4 changed files with 43 additions and 42 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ public ProjectResponse postProject(PostProjectRequest request) {
project.setImage(request.image());
project.setStartDate(request.startDate());
project.setEndDate(request.endDate());

project.setProgress(0);
// 프로젝트 저장
Project savedProject = projectRepository.save(project);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -142,6 +142,7 @@ public ScheduleResponse postSchedule(PostScheduleRequest request) {
schedule.setTag(request.tag());
schedule.setUrl(request.url());
schedule.setProject(project);
schedule.setCompleted(false);

Schedule savedSchedule = scheduleRepository.save(schedule);

Expand Down
6 changes: 6 additions & 0 deletions docs/assets/css/main.css
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,19 @@ tfoot, thead, tr, th, td, article, aside,
canvas, details, embed, figure, figcaption,
footer, header, hgroup, menu, nav, output, ruby,
section, summary, time, mark, audio, video {
text-align: justify;
margin: 0;
padding: 0;
border: 0;
font-size: 100%;
font: inherit;
vertical-align: baseline;}

p {
line-height: 1.6; /* Increase line height for readability */
margin-bottom: 1rem; /* Add spacing between paragraphs */
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
display: block;}
Expand Down
76 changes: 35 additions & 41 deletions docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -58,21 +58,21 @@ <h2 class="major">DemoVideo</h2>

<div class="wrapper">
<!-- Panel 01_CalendarView -->
<section class="panel">
<div class="image span-1-5">
<img src="images/iPhone/01_CalendarView.webp" alt="" width="100%", height="100%"/>
</div>
<div class="intro color2 span-2-75">
<h2 class="major">메인 페이지</h2>
<p>
<b>NOTO의 메인 페이지입니다!</b>
<br>- 리퀘스트 및 알림의 개수를 확인할 수 있습니다.
<br>- 오늘의 할 일을 확인할 수 있습니다.
<br>- 사용자가 속한 프로젝트 별 진행 현황을 확인할 수 있습니다.
<br>- 모두 보기를 클릭해 더 많은 정보를 얻을 수 있습니다.<br></p>
</div>
</section>
</div>
<section class="panel">
<div class="image span-1-5">
<img src="images/iPhone/01_CalendarView.webp" alt="" style="width: 100%; height: 100%;" />
</div>
<div class="intro color2 span-2-75">
<h2 class="major">메인 페이지</h2>
<p style="text-align: justify; line-height: 2; padding-top: 20px;">
- 리퀘스트 및 알림의 개수<br>
- 오늘의 할 일<br>
- 사용자가 속한 프로젝트 별 진행 현황<br>
- 모두 보기를 클릭해 추가 정보<br>
</p>
</div>
</section>
</div>

<div class="space"></div>

Expand All @@ -84,11 +84,10 @@ <h2 class="major">메인 페이지</h2>
</div>
<div class="intro color2 span-2-75">
<h2 class="major">프로젝트 페이지(1)</h2>
<p>
<b>프로젝트 페이지의 상단입니다!</b>
<br>- 리퀘스트 및 알림의 개수를 확인할 수 있습니다.
<br>- 프로젝트의 상세 정보를 확인할 수 있습니다.
<br>- 캘린더를 통해 프로젝트 내부의 일정을 확인할 수 있습니다.
<p style="text-align: justify; line-height: 2; padding-top: 20px;">
<br>- 리퀘스트 및 알림의 개수
<br>- 프로젝트의 상세 정보
<br>- 캘린더를 통해 프로젝트 내부의 일정
</p>
</div>
</section>
Expand All @@ -104,11 +103,10 @@ <h2 class="major">프로젝트 페이지(1)</h2>
</div>
<div class="intro color2 span-2-75">
<h2 class="major">프로젝트 페이지(2)</h2>
<p>
<b>프로젝트 페이지의 하단입니다!</b>
<br>- 캘린더에서 특정 날짜를 클릭하여 해당 날짜의 일정을 확인할 수 있습니다.
<br>- 각 일정을 클릭함으로써, 일정의 상세 정보를 확인할 수 있습니다.
</p>
<p style="text-align: justify; line-height: 2; padding-top: 20px;">
<br>- 캘린더를 통해 특정 날짜의 일정
<br>- 각 일정을 클릭하여 일정의 상세 정보 페이지로
</p>
</div>
</section>
</div>
Expand All @@ -122,9 +120,8 @@ <h2 class="major">프로젝트 페이지(2)</h2>
<img src="images/iPhone/04_DailyView.webp" alt="" width="100%", height="100%"/>
</div>
<div class="intro color2 span-2-75">
<h2 class="major">일정 상세 페이지</h2>
<p>
<b>일정 상세 페이지입니다!</b>
<h2 class="major">일정 상세정보 페이지</h2>
<p style="text-align: justify; line-height: 2; padding-top: 20px;">
<br>- 일정에 대한 상세 정보를 확인할 수 있습니다.
<br>- 아래 '일정 URL로 이동' 버튼을 클릭하여, 일정에 대한 URL로 이동할 수 있습니다.
</p>
Expand All @@ -142,11 +139,10 @@ <h2 class="major">일정 상세 페이지</h2>
</div>
<div class="intro color2 span-2-75">
<h2 class="major">리퀘스트 목록 페이지</h2>
<p>
<b>리퀘스트 목록 페이지입니다! </b>
<br>- 상단의 '+' 버튼을 통해 리퀘스트를 추가할 수 있습니다.
<br>- 보낸 리퀘스트와 받은 리퀘스트를 확인할 수 있습니다.
<br>- 모두 보기를 클릭해 더 많은 정보를 얻을 수 있습니다.
<p style="text-align: justify; line-height: 2; padding-top: 20px;">
<br>- 상단의 '+' 버튼으로 리퀘스트 추가
<br>- 보낸 리퀘스트와 받은 리퀘스트를 확인
<br>- 모두 보기를 클릭해 추가 정보 확인
</p>
</div>
</section>
Expand All @@ -162,10 +158,9 @@ <h2 class="major">리퀘스트 목록 페이지</h2>
</div>
<div class="intro color2 span-2-75">
<h2 class="major">리퀘스트 상세 페이지</h2>
<p>
<b>리퀘스트 상세 페이지입니다! </b>
<br>- 리퀘스트에 대한 상세 정보를 확인할 수 있습니다.
<br>- 보낸 리퀘스트의 경우, 반려 사유도 확인할 수 있습니다.
<p style="text-align: justify; line-height: 2; padding-top: 20px;">
<br>- 리퀘스트에 대한 상세 정보 확인
<br>- 보낸 리퀘스트의 경우, 반려 사유 확인
</p>
</div>
</section>
Expand All @@ -181,10 +176,9 @@ <h2 class="major">리퀘스트 상세 페이지</h2>
</div>
<div class="intro color2 span-2-75">
<h2 class="major">설정 페이지</h2>
<p>
<b>설정 페이지입니다! </b>
<br>- 유저 정보를 확인할 수 있습니다.
<br>- 간단한 설정을 할 수 있습니다.
<p style="text-align: justify; line-height: 2; padding-top: 20px;">
<br>- 유저 정보 확인
<br>- 간단한 설정 가능
</p>
</div>
</section>
Expand Down

0 comments on commit e09ae76

Please sign in to comment.