Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: 과제 제출 컨벤션 소문자로 변경 #754

Merged
merged 1 commit into from
Sep 4, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
public class GithubConstant {

public static final String GITHUB_DOMAIN = "github.com/";
public static final String GITHUB_ASSIGNMENT_PATH = "week%d/WIL.md";
public static final String GITHUB_ASSIGNMENT_PATH = "week%d/wil.md";
public static final String GITHUB_USER_API_URL = "https://api.github.com/user/%s";

private GithubConstant() {}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ private StudyConstant() {}
public static final String CURRICULUM_DESCRIPTION = "curriculumDescription";

// AssignmentHistory
public static final String SUBMISSION_LINK = "https://github.com/ownername/reponame/blob/main/week1/WIL.md";
public static final String SUBMISSION_LINK = "https://github.com/ownername/reponame/blob/main/week1/wil.md";
public static final String COMMIT_HASH = "aa11bb22cc33";
public static final Integer CONTENT_LENGTH = 2000;
public static final LocalDateTime COMMITTED_AT = LocalDateTime.of(2024, 9, 8, 0, 0);
Expand Down