-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #80 from Kusitms-POPTATO-DEV/feat/create-tutorial-…
…blocks Feat#79: 튜토리얼 데이터 추가
- Loading branch information
Showing
8 changed files
with
14,475 additions
and
3 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
20 changes: 20 additions & 0 deletions
20
src/main/java/server/poptato/todo/constant/TutorialMessage.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
package server.poptato.todo.constant; | ||
|
||
import java.util.Arrays; | ||
import java.util.List; | ||
|
||
public class TutorialMessage { | ||
public static final String BACKLOG_NEW_TODO = "'새로 추가하기'를 눌러 할 일을 생성해 보세요."; | ||
public static final String BACKLOG_BOOKMARK_DDAY = "... 을 눌러 '중요'와 '마감기한'을 설정해 보세요."; | ||
public static final String BACKLOG_DRAG_AND_DROP = "할 일을 꾹 눌러 위 아래로 옮겨 보세요."; | ||
public static final String BACKLOG_LEFT_SWIPE = "할 일을 왼쪽으로 넘겨보세요. '오늘'로 할 일이 이동해요."; | ||
public static final String TODAY_COMPLETE = "오늘의 할 일을 모두 체크해 보세요!"; | ||
|
||
public static final List<String> BACKLOG_MESSAGES = Arrays.asList( | ||
BACKLOG_NEW_TODO, | ||
BACKLOG_BOOKMARK_DDAY, | ||
BACKLOG_DRAG_AND_DROP, | ||
BACKLOG_LEFT_SWIPE | ||
); | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters