-
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.
* chore: TripleMeetingServiceTest commented * fix: change update user information to upsert user information * chore: commented broken test * feat: initialize repository test * fix: remove gender update * chore: format * fix: change findUserProfile due to misfunction * fix: change update user information logic * test: add user integration test * feat: move update user profile logic to user service * test: add user domain test * chore: fix some missing value due to solving conflict * chore: add service injection * chore: delete comment * fix: delete h2 mode * fix: add h2 option to avoid keyword * fix: change url in user api * chore: move private function to end * fix: delete making test-aplication.yml * feat: add swagger for UserApi * feat: change user creation logic
- Loading branch information
1 parent
4d9f2ed
commit dd68a9c
Showing
11 changed files
with
372 additions
and
135 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
6 changes: 6 additions & 0 deletions
6
src/main/kotlin/uoslife/servermeeting/user/exception/UserInformationNotFoundException.kt
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,6 @@ | ||
package uoslife.servermeeting.user.exception | ||
|
||
import uoslife.servermeeting.global.error.exception.EntityNotFoundException | ||
import uoslife.servermeeting.global.error.exception.ErrorCode | ||
|
||
class UserInformationNotFoundException : EntityNotFoundException(ErrorCode.INFORMATION_NOT_FOUND) |
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.