Skip to content

Commit

Permalink
[FEAT] make all url start with https://
Browse files Browse the repository at this point in the history
  • Loading branch information
nogamsung committed Feb 24, 2024
1 parent b002e01 commit 9ca8580
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ public void injectProfiles(List<User> users) {
for (int i = 0; i < users.size(); i++) {
Position position = Position.NONE;

if (i < 50)
if (i < 100)
switch (i % 4) {
case 0:
position = Position.DESIGNER;
Expand Down Expand Up @@ -198,7 +198,7 @@ public void injectProfiles(List<User> users) {
educationRepository.save(education);
Portfolio portfolio = Portfolio.builder()
.portfolioName("깃허브")
.portfolioUrl("github.com/gabojait")
.portfolioUrl("https://github.com/gabojait")
.media(Media.LINK)
.user(users.get(i))
.build();
Expand Down Expand Up @@ -251,7 +251,7 @@ public void injectCompleteTeams(List<User> users) {
.team(team)
.build();

teamMember.complete("github.com/gabojait", LocalDateTime.now());
teamMember.complete("https://github.com/gabojait", LocalDateTime.now());
teamMemberRepository.save(teamMember);
teamMembers.add(teamMember);
}
Expand Down

0 comments on commit 9ca8580

Please sign in to comment.