-
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 #175 from ITZipProject/feature/resume
π οΈ λ¦¬ν©ν λ§ : μ λ°μ΄νΈ μ½λ μμ± λ° μ±κ³΅ ν μ€νΈ μ½λ μμ± μλ£
- Loading branch information
Showing
61 changed files
with
522 additions
and
323 deletions.
There are no files selected for viewing
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
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
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
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
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
52 changes: 33 additions & 19 deletions
52
...main/java/darkoverload/itzip/feature/resume/controller/response/UpdateResumeResponse.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 |
---|---|---|
@@ -1,24 +1,38 @@ | ||
package darkoverload.itzip.feature.resume.controller.response; | ||
|
||
import darkoverload.itzip.feature.resume.code.PublicOnOff; | ||
import darkoverload.itzip.feature.resume.domain.achievement.Achievements; | ||
import darkoverload.itzip.feature.resume.domain.activity.Activities; | ||
import darkoverload.itzip.feature.resume.domain.career.Careers; | ||
import darkoverload.itzip.feature.resume.domain.education.Educations; | ||
import darkoverload.itzip.feature.resume.domain.language.Languages; | ||
import darkoverload.itzip.feature.resume.domain.myskill.MySkills; | ||
import darkoverload.itzip.feature.resume.domain.qualification.Qualifications; | ||
import darkoverload.itzip.feature.resume.domain.resume.Resume; | ||
import darkoverload.itzip.feature.resume.domain.resume.ResumeDetails; | ||
import lombok.Builder; | ||
|
||
|
||
public record UpdateResumeResponse(Achievements achievements, Activities activities, Careers careers, | ||
Educations educations, Languages languages, MySkills mySkills, | ||
Qualifications qualifications, Resume resume) { | ||
@Builder | ||
public UpdateResumeResponse { | ||
|
||
} | ||
|
||
public static UpdateResumeResponse from(ResumeDetails details) { | ||
return UpdateResumeResponse.builder() | ||
.achievements(details.achievements()) | ||
.activities(details.activities()) | ||
.careers(details.careers()) | ||
.educations(details.educations()) | ||
.languages(details.languages()) | ||
.mySkills(details.mySkills()) | ||
.qualifications(details.qualifications()) | ||
.resume(details.resume()) | ||
.build(); | ||
} | ||
|
||
import java.util.List; | ||
|
||
|
||
|
||
public class UpdateResumeResponse { | ||
|
||
private String email; | ||
|
||
private String phone; | ||
|
||
private String subject; | ||
|
||
private String introduction; | ||
|
||
private PublicOnOff publicOnOff; | ||
} | ||
|
||
private List<String> links; | ||
|
||
private Long resumeId; | ||
} |
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
Oops, something went wrong.