├── .githooks ├── install.sh └── prepare-commit-msg ├── .github ├── codeowners └── workflows │ ├── develop_server_deployer.yaml │ ├── develop_server_integrator.yaml │ ├── pr_validator.yml │ ├── production_server_deployer.yaml │ └── unit_test_runner.yaml ├── .gitignore ├── Dockerfile-http ├── README.md ├── application ├── build.gradle.kts └── src │ ├── main │ ├── kotlin │ │ └── com │ │ │ └── studentcenter │ │ │ └── weave │ │ │ └── application │ │ │ ├── chat │ │ │ ├── port │ │ │ │ ├── inbound │ │ │ │ │ ├── CreateChatRoom.kt │ │ │ │ │ ├── GetChatMessage.kt │ │ │ │ │ ├── GetChatRoom.kt │ │ │ │ │ └── SendChatMessage.kt │ │ │ │ └── outbound │ │ │ │ │ ├── ChatMessagePublisher.kt │ │ │ │ │ ├── ChatMessageRepository.kt │ │ │ │ │ └── ChatRoomRepository.kt │ │ │ ├── service │ │ │ │ ├── CreateChatRoomService.kt │ │ │ │ ├── GetChatMessageService.kt │ │ │ │ ├── GetChatRoomService.kt │ │ │ │ └── SendChatMessageService.kt │ │ │ └── vo │ │ │ │ └── ChatRoomDetail.kt │ │ │ ├── common │ │ │ ├── config │ │ │ │ └── ApplicationConfig.kt │ │ │ ├── exception │ │ │ │ ├── AuthException.kt │ │ │ │ └── UniversityVerificationException.kt │ │ │ ├── properties │ │ │ │ ├── JwtTokenProperties.kt │ │ │ │ ├── MeetingTeamInvitationProperties.kt │ │ │ │ └── OpenIdProperties.kt │ │ │ └── security │ │ │ │ └── context │ │ │ │ ├── UserSecurityContext.kt │ │ │ │ └── UserSecuritySupport.kt │ │ │ ├── meeting │ │ │ ├── port │ │ │ │ ├── inbound │ │ │ │ │ ├── CancelAllMeeting.kt │ │ │ │ │ ├── CancelEndedPendingMeeting.kt │ │ │ │ │ ├── CreateMeetingAttendance.kt │ │ │ │ │ ├── FindMyRequestMeetingByReceivingTeamId.kt │ │ │ │ │ ├── GetAllOtherTeamMemberInfo.kt │ │ │ │ │ ├── GetMeetingAttendances.kt │ │ │ │ │ ├── NotifyMeetingEvent.kt │ │ │ │ │ ├── RequestMeeting.kt │ │ │ │ │ ├── ScrollPendingMeeting.kt │ │ │ │ │ └── ScrollPreparedMeeting.kt │ │ │ │ └── outbound │ │ │ │ │ ├── MeetingAttendanceRepository.kt │ │ │ │ │ ├── MeetingEventMessagePort.kt │ │ │ │ │ ├── MeetingEventPublisher.kt │ │ │ │ │ └── MeetingRepository.kt │ │ │ ├── service │ │ │ │ ├── application │ │ │ │ │ ├── CancelAllMeetingService.kt │ │ │ │ │ ├── CancelEndedPendingMeetingService.kt │ │ │ │ │ ├── CreateMeetingAttendanceService.kt │ │ │ │ │ ├── FindMyRequestMeetingByReceivingTeamIdService.kt │ │ │ │ │ ├── GetAllOtherTeamMemberInfoService.kt │ │ │ │ │ ├── GetMeetingAttendancesService.kt │ │ │ │ │ ├── NotifyMeetingEventService.kt │ │ │ │ │ ├── RequestMeetingService.kt │ │ │ │ │ ├── ScrollPendingMeetingService.kt │ │ │ │ │ └── ScrollPreparedMeetingService.kt │ │ │ │ └── domain │ │ │ │ │ ├── MeetingAttendanceDomainService.kt │ │ │ │ │ ├── MeetingDomainService.kt │ │ │ │ │ ├── MeetingEventService.kt │ │ │ │ │ └── impl │ │ │ │ │ ├── MeetingAttendanceDomainServiceImpl.kt │ │ │ │ │ └── MeetingDomainServiceImpl.kt │ │ │ └── vo │ │ │ │ ├── MeetingMatchingEvent.kt │ │ │ │ ├── PendingMeetingInfo.kt │ │ │ │ └── PreparedMeetingInfo.kt │ │ │ ├── meetingTeam │ │ │ ├── port │ │ │ │ ├── inbound │ │ │ │ │ ├── CreateInvitationLink.kt │ │ │ │ │ ├── CreateMeetingTeam.kt │ │ │ │ │ ├── DeleteMeetingTeam.kt │ │ │ │ │ ├── EditMeetingTeam.kt │ │ │ │ │ ├── GetAllMeetingTeamInfo.kt │ │ │ │ │ ├── GetListMeetingTeam.kt │ │ │ │ │ ├── GetMeetingTeam.kt │ │ │ │ │ ├── GetMeetingTeamByInvitationCode.kt │ │ │ │ │ ├── GetMeetingTeamDetail.kt │ │ │ │ │ ├── GetMyMeetingTeam.kt │ │ │ │ │ ├── JoinMeetingTeam.kt │ │ │ │ │ └── LeaveMeetingTeam.kt │ │ │ │ └── outbound │ │ │ │ │ ├── MeetingTeamInvitationRepository.kt │ │ │ │ │ ├── MeetingTeamMemberSummaryRepository.kt │ │ │ │ │ └── MeetingTeamRepository.kt │ │ │ ├── service │ │ │ │ ├── application │ │ │ │ │ ├── CreateInvitationLinkService.kt │ │ │ │ │ ├── CreateMeetingTeamService.kt │ │ │ │ │ ├── DeleteMeetingTeamService.kt │ │ │ │ │ ├── EditMeetingTeamService.kt │ │ │ │ │ ├── GetAllMeetingTeamInfoService.kt │ │ │ │ │ ├── GetListMeetingTeamService.kt │ │ │ │ │ ├── GetMeetingTeamByInvitationCodeService.kt │ │ │ │ │ ├── GetMeetingTeamDetailService.kt │ │ │ │ │ ├── GetMeetingTeamService.kt │ │ │ │ │ ├── GetMyMeetingTeamService.kt │ │ │ │ │ ├── JoinMeetingTeamService.kt │ │ │ │ │ └── LeaveMeetingTeamService.kt │ │ │ │ └── domain │ │ │ │ │ ├── MeetingTeamDomainService.kt │ │ │ │ │ └── impl │ │ │ │ │ └── MeetingTeamDomainServiceImpl.kt │ │ │ ├── util │ │ │ │ ├── MeetingTeamInvitationService.kt │ │ │ │ └── impl │ │ │ │ │ └── MeetingTeamInvitationServiceImpl.kt │ │ │ └── vo │ │ │ │ ├── MeetingMemberDetail.kt │ │ │ │ ├── MeetingTeamInfo.kt │ │ │ │ ├── MeetingTeamInvitation.kt │ │ │ │ ├── MeetingTeamListFilter.kt │ │ │ │ ├── MemberInfo.kt │ │ │ │ └── MyMeetingTeamInfo.kt │ │ │ ├── suggestion │ │ │ ├── port │ │ │ │ ├── inbound │ │ │ │ │ └── CreateSuggestion.kt │ │ │ │ └── outbound │ │ │ │ │ └── SuggestionRepository.kt │ │ │ └── service │ │ │ │ └── CreateSuggestionService.kt │ │ │ ├── university │ │ │ ├── port │ │ │ │ ├── inbound │ │ │ │ │ ├── GetMajor.kt │ │ │ │ │ └── GetUniversity.kt │ │ │ │ └── outbound │ │ │ │ │ ├── MajorRepository.kt │ │ │ │ │ └── UniversityRepository.kt │ │ │ └── service │ │ │ │ ├── application │ │ │ │ ├── GetMajorService.kt │ │ │ │ └── GetUniversityService.kt │ │ │ │ └── domain │ │ │ │ ├── MajorDomainService.kt │ │ │ │ ├── UniversityDomainService.kt │ │ │ │ └── impl │ │ │ │ ├── MajorDomainServiceImpl.kt │ │ │ │ └── UniversityDomainServiceImpl.kt │ │ │ └── user │ │ │ ├── port │ │ │ ├── inbound │ │ │ │ ├── CompleteProfileImageUpload.kt │ │ │ │ ├── GetMyProfile.kt │ │ │ │ ├── GetProfileImageUploadUrl.kt │ │ │ │ ├── GetUser.kt │ │ │ │ ├── Logout.kt │ │ │ │ ├── RefreshToken.kt │ │ │ │ ├── RegisterUser.kt │ │ │ │ ├── SendVerificationEmail.kt │ │ │ │ ├── SocialLogin.kt │ │ │ │ ├── UnregisterUser.kt │ │ │ │ ├── UpdateMyAnimalType.kt │ │ │ │ ├── UpdateMyHeight.kt │ │ │ │ ├── UpdateMyKakaoId.kt │ │ │ │ ├── UpdateMyMbti.kt │ │ │ │ └── VerifyUniversityVerificationNumber.kt │ │ │ └── outbound │ │ │ │ ├── DeletedUserInfoRepository.kt │ │ │ │ ├── UserAuthInfoRepository.kt │ │ │ │ ├── UserEventPort.kt │ │ │ │ ├── UserProfileImageUrlPort.kt │ │ │ │ ├── UserRefreshTokenRepository.kt │ │ │ │ ├── UserRepository.kt │ │ │ │ ├── UserSilRepository.kt │ │ │ │ ├── UserUniversityVerificationInfoRepository.kt │ │ │ │ ├── UserVerificationNumberRepository.kt │ │ │ │ └── VerificationNumberMailer.kt │ │ │ ├── service │ │ │ ├── application │ │ │ │ ├── CompleteProfileImageUploadService.kt │ │ │ │ ├── GetMyProfileService.kt │ │ │ │ ├── GetProfileImageUploadUrlService.kt │ │ │ │ ├── GetUserService.kt │ │ │ │ ├── LogoutService.kt │ │ │ │ ├── RefreshTokenService.kt │ │ │ │ ├── RegisterUserService.kt │ │ │ │ ├── SendVerificationEmailService.kt │ │ │ │ ├── SocialLoginService.kt │ │ │ │ ├── UnregisterUserService.kt │ │ │ │ ├── UpdateMyAnimalTypeService.kt │ │ │ │ ├── UpdateMyHeightService.kt │ │ │ │ ├── UpdateMyKakaoIdService.kt │ │ │ │ ├── UpdateMyMbtiService.kt │ │ │ │ └── VerifyUniversityVerificationNumberService.kt │ │ │ ├── domain │ │ │ │ ├── DeletedUserInfoService.kt │ │ │ │ ├── UserAuthInfoDomainService.kt │ │ │ │ ├── UserDomainService.kt │ │ │ │ ├── UserSilDomainService.kt │ │ │ │ ├── UserUniversityVerificationInfoDomainService.kt │ │ │ │ └── impl │ │ │ │ │ ├── DeletedUserInfoServiceImpl.kt │ │ │ │ │ ├── UserAuthInfoDomainServiceImpl.kt │ │ │ │ │ ├── UserDomainServiceImpl.kt │ │ │ │ │ ├── UserSilDomainServiceImpl.kt │ │ │ │ │ └── UserUniversityVerificationInfoDomainServiceImpl.kt │ │ │ └── util │ │ │ │ ├── UserTokenService.kt │ │ │ │ ├── UserTokenType.kt │ │ │ │ └── impl │ │ │ │ ├── UserTokenServiceImpl.kt │ │ │ │ └── strategy │ │ │ │ ├── AppleOpenIdTokenResolveStrategy.kt │ │ │ │ ├── KakaoOpenIdTokenResolveStrategy.kt │ │ │ │ ├── OpenIdTokenResolveStrategy.kt │ │ │ │ ├── OpenIdTokenResolveStrategyFactory.kt │ │ │ │ └── OpenIdTokenResolveStrategyFactoryImpl.kt │ │ │ └── vo │ │ │ ├── UserAuthentication.kt │ │ │ ├── UserTokenClaims.kt │ │ │ └── UserUniversityVerificationNumber.kt │ └── resources │ │ └── application-application.yaml │ ├── test │ └── kotlin │ │ └── com │ │ └── studentcenter │ │ └── weave │ │ └── application │ │ ├── chat │ │ └── service │ │ │ ├── CreateChatRoomServiceTest.kt │ │ │ ├── GetChatRoomServiceTest.kt │ │ │ └── SendChatMessageServiceTest.kt │ │ ├── meeting │ │ └── service │ │ │ └── application │ │ │ ├── CancelEndedPendingMeetingServiceTest.kt │ │ │ ├── FindMyRequestMeetingByReceivingTeamIdServiceTest.kt │ │ │ ├── GetAllOtherTeamMemberInfoServiceTest.kt │ │ │ ├── GetMeetingAttendancesServiceTest.kt │ │ │ ├── MeetingRequestServiceTest.kt │ │ │ ├── NotifyMeetingEventServiceTest.kt │ │ │ ├── ScrollPendingMeetingServiceTest.kt │ │ │ └── ScrollPreparedMeetingServiceTest.kt │ │ ├── meetingTeam │ │ └── service │ │ │ ├── application │ │ │ ├── CreateInvitationLinkTest.kt │ │ │ ├── CreateMeetingTeamTest.kt │ │ │ ├── DeleteMeetingTeamTest.kt │ │ │ ├── EditMeetingTeamTest.kt │ │ │ ├── GetMeetingTeamByInvitationTest.kt │ │ │ ├── GetMeetingTeamDetailTest.kt │ │ │ ├── JoinMeetingTeamServiceTest.kt │ │ │ └── LeaveMeetingTeamTest.kt │ │ │ └── util │ │ │ └── impl │ │ │ └── MeetingTeamInvitationServiceImplTest.kt │ │ ├── suggestion │ │ └── service │ │ │ └── CreateSuggestionServiceTest.kt │ │ ├── university │ │ └── service │ │ │ └── application │ │ │ ├── GetMajorTest.kt │ │ │ └── GetUniversityTest.kt │ │ └── user │ │ └── service │ │ ├── application │ │ ├── CompleteProfileImageUploadTest.kt │ │ ├── GetMyProfileTest.kt │ │ ├── GetProfileImageUploadUrlTest.kt │ │ ├── LogoutTest.kt │ │ ├── RefreshTokenTest.kt │ │ ├── RegisterUserTest.kt │ │ ├── SendVerificationEmailTest.kt │ │ ├── SocialLoginTest.kt │ │ ├── UnregisterUserTest.kt │ │ ├── UpdateMyAnimalTypeTest.kt │ │ ├── UpdateMyHeightTest.kt │ │ ├── UpdateMyKakaoIdTest.kt │ │ ├── UpdateMyMbtiTest.kt │ │ └── VerifyUniversityVerificationNumberTest.kt │ │ ├── domain │ │ └── impl │ │ │ ├── UserAuthInfoDomainServiceImplTest.kt │ │ │ └── UserDomainServiceImplTest.kt │ │ └── util │ │ └── impl │ │ ├── UserTokenServiceImplTest.kt │ │ └── strategy │ │ ├── AppleOpenIdTokenResolveStrategyTest.kt │ │ └── KakaoOpenIdTokenResolveStrategyTest.kt │ └── testFixtures │ └── kotlin │ └── com │ └── studentcenter │ └── weave │ └── application │ ├── chat │ └── outbound │ │ ├── ChatMessagePublisherSpy.kt │ │ ├── ChatMessageRepositorySpy.kt │ │ └── ChatRoomRepositorySpy.kt │ ├── common │ └── properties │ │ ├── JwtTokenPropertiesFixtureFactory.kt │ │ ├── MeetingTeamInvitationPropertiesFixtureFactory.kt │ │ └── OpenIdPropertiesFixtureFactory.kt │ ├── meeting │ └── outbound │ │ ├── MeetingAttendanceRepositorySpy.kt │ │ ├── MeetingEventMessagePortSpy.kt │ │ └── MeetingRepositorySpy.kt │ ├── meetingTeam │ ├── outbound │ │ ├── MeetingTeamInvitationRepositorySpy.kt │ │ ├── MeetingTeamMemberSummaryRepositorySpy.kt │ │ └── MeetingTeamRepositorySpy.kt │ └── vo │ │ ├── MeetingTeamInfoCreator.kt │ │ └── MeetingTeamInvitationFixtureFactory.kt │ ├── suggestion │ └── outbound │ │ └── SuggestionRepositorySpy.kt │ ├── university │ └── port │ │ └── outbound │ │ ├── MajorRepositorySpy.kt │ │ └── UniversityRepositorySpy.kt │ └── user │ ├── port │ ├── inbound │ │ └── GetUserStub.kt │ └── outbound │ │ ├── DeletedUserInfoRepositorySpy.kt │ │ ├── UserAuthInfoRepositorySpy.kt │ │ ├── UserEventPortStub.kt │ │ ├── UserProfileImageUrlPortStub.kt │ │ ├── UserRefreshTokenRepositorySpy.kt │ │ ├── UserRepositorySpy.kt │ │ ├── UserSilRepositorySpy.kt │ │ ├── UserUniversityVerificationInfoRepositorySpy.kt │ │ └── UserVerificationNumberRepositorySpy.kt │ ├── service │ └── util │ │ └── impl │ │ └── strategy │ │ └── OpenIdTokenResolveStrategyFactoryStub.kt │ └── vo │ ├── UserAuthenticationFixtureFactory.kt │ └── UserTokenClaimsFixtureFactory.kt ├── bootstrap └── http │ ├── build.gradle.kts │ ├── compose-dev.yaml │ ├── compose-local.yaml │ └── src │ ├── main │ ├── kotlin │ │ └── com │ │ │ └── studentcenter │ │ │ └── weave │ │ │ └── bootstrap │ │ │ ├── WeaveHttpApplication.kt │ │ │ ├── auth │ │ │ ├── api │ │ │ │ └── AuthApi.kt │ │ │ ├── controller │ │ │ │ └── AuthRestController.kt │ │ │ └── dto │ │ │ │ ├── RefreshLoginTokenResponse.kt │ │ │ │ ├── RefreshTokenRequest.kt │ │ │ │ ├── SocialLoginRequest.kt │ │ │ │ └── SocialLoginResponse.kt │ │ │ ├── chat │ │ │ ├── api │ │ │ │ ├── ChatMessageApi.kt │ │ │ │ └── ChatRoomApi.kt │ │ │ ├── controller │ │ │ │ ├── ChatMessageHandler.kt │ │ │ │ ├── ChatMessageRestController.kt │ │ │ │ ├── ChatRoomRestController.kt │ │ │ │ └── ChatWebSocketController.kt │ │ │ └── dto │ │ │ │ ├── ChatRoomDetailResponse.kt │ │ │ │ ├── GetChatMessagesRequest.kt │ │ │ │ ├── GetChatMessagesResponse.kt │ │ │ │ └── SendChatMessageRequest.kt │ │ │ ├── common │ │ │ ├── config │ │ │ │ ├── OpenApiConfig.kt │ │ │ │ ├── WebMvcConfig.kt │ │ │ │ └── WebSocketConfig.kt │ │ │ ├── exception │ │ │ │ ├── ApiException.kt │ │ │ │ ├── CustomExceptionHandler.kt │ │ │ │ ├── ErrorResponse.kt │ │ │ │ ├── UnknownExceptionHandler.kt │ │ │ │ └── WebSocketExceptionHandler.kt │ │ │ └── security │ │ │ │ ├── annotation │ │ │ │ ├── RegisterTokenClaim.kt │ │ │ │ └── Secured.kt │ │ │ │ ├── filter │ │ │ │ ├── ExceptionHandlingFilter.kt │ │ │ │ └── JwtAuthenticationFilter.kt │ │ │ │ ├── interceptor │ │ │ │ ├── AuthorizationInterceptor.kt │ │ │ │ ├── StompAuthInterceptor.kt │ │ │ │ └── StompExceptionHandler.kt │ │ │ │ └── resolver │ │ │ │ └── RegisterTokenArgumentResolver.kt │ │ │ ├── meeting │ │ │ ├── api │ │ │ │ └── MeetingApi.kt │ │ │ ├── controller │ │ │ │ ├── MeetingEventHandler.kt │ │ │ │ └── MeetingRestController.kt │ │ │ └── dto │ │ │ │ ├── KakaoIdResponse.kt │ │ │ │ ├── MeetingAttendancesResponse.kt │ │ │ │ ├── MeetingRequestRequest.kt │ │ │ │ ├── MeetingResponse.kt │ │ │ │ ├── MeetingTeamDto.kt │ │ │ │ ├── PendingMeetingScrollRequest.kt │ │ │ │ ├── PendingMeetingScrollResponse.kt │ │ │ │ ├── PreparedMeetingScrollRequest.kt │ │ │ │ └── PreparedMeetingScrollResponse.kt │ │ │ ├── meetingTeam │ │ │ ├── api │ │ │ │ └── MeetingTeamApi.kt │ │ │ ├── controller │ │ │ │ └── MeetingTeamRestController.kt │ │ │ └── dto │ │ │ │ ├── MeetingTeamCreateInvitationResponse.kt │ │ │ │ ├── MeetingTeamCreateRequest.kt │ │ │ │ ├── MeetingTeamEditRequest.kt │ │ │ │ ├── MeetingTeamGetByInvitationCodeResponse.kt │ │ │ │ ├── MeetingTeamGetDetailResponse.kt │ │ │ │ ├── MeetingTeamGetListRequest.kt │ │ │ │ ├── MeetingTeamGetListResponse.kt │ │ │ │ ├── MeetingTeamGetLocationsResponse.kt │ │ │ │ ├── MeetingTeamGetMyRequest.kt │ │ │ │ ├── MeetingTeamGetMyResponse.kt │ │ │ │ └── MeetingTeamMemberDetailResponse.kt │ │ │ ├── scheduler │ │ │ ├── component │ │ │ │ └── PendingMeetingExpireScheduler.kt │ │ │ └── config │ │ │ │ └── SchedulerConfig.kt │ │ │ ├── suggestion │ │ │ ├── api │ │ │ │ └── SuggestionApi.kt │ │ │ ├── controller │ │ │ │ └── SuggestionRestController.kt │ │ │ └── dto │ │ │ │ └── SuggestionCreateRequest.kt │ │ │ ├── university │ │ │ ├── api │ │ │ │ └── UnivApi.kt │ │ │ ├── controller │ │ │ │ └── UnivRestController.kt │ │ │ └── dto │ │ │ │ ├── MajorsResponse.kt │ │ │ │ ├── UniversitiesResponse.kt │ │ │ │ └── UniversityResponse.kt │ │ │ └── user │ │ │ ├── api │ │ │ └── UserApi.kt │ │ │ ├── controller │ │ │ └── UserRestController.kt │ │ │ └── dto │ │ │ ├── UserCompleteProfileImageUploadRequest.kt │ │ │ ├── UserGetAvailableAnimalTypesResponse.kt │ │ │ ├── UserGetMyProfileResponse.kt │ │ │ ├── UserGetProfileImageUploadUrlResponse.kt │ │ │ ├── UserModifyMyMbtiRequest.kt │ │ │ ├── UserRegisterRequest.kt │ │ │ ├── UserRegisterResponse.kt │ │ │ ├── UserSetMyAnimalTypeRequest.kt │ │ │ ├── UserSetMyHeightRequest.kt │ │ │ ├── UserSetMyKakaoIdRequest.kt │ │ │ ├── UserUnivVerificationSendRequest.kt │ │ │ └── UserUnivVerificationVerifyRequest.kt │ └── resources │ │ ├── application.yaml │ │ └── static │ │ └── .well-known │ │ ├── apple-app-site-association │ │ └── assetlinks.json │ ├── test │ ├── kotlin │ │ └── com │ │ │ └── studentcenter │ │ │ └── weave │ │ │ └── bootstrap │ │ │ ├── chat │ │ │ └── controller │ │ │ │ └── ChatMessageHandlerTest.kt │ │ │ ├── common │ │ │ └── security │ │ │ │ ├── filter │ │ │ │ └── JwtAuthenticationFilterTest.kt │ │ │ │ └── interceptor │ │ │ │ └── AuthorizationInterceptorTest.kt │ │ │ └── integration │ │ │ ├── CreateMeetingAttendanceIntegrationTest.kt │ │ │ ├── IntegrationTestDescribeSpec.kt │ │ │ └── UserSilDomainServiceIntegrationTest.kt │ └── resources │ │ └── compose-test.yaml │ └── testFixtures │ └── kotlin │ └── com │ └── studentcenter │ └── weave │ └── bootstrap │ └── controller │ ├── AuthorizationInterceptorTestController.kt │ └── JwtAuthenticationFilterTestController.kt ├── docs └── weave-infra.jpg ├── domain ├── build.gradle.kts └── src │ ├── main │ └── kotlin │ │ └── com │ │ └── studentcenter │ │ └── weave │ │ └── domain │ │ ├── chat │ │ └── entity │ │ │ ├── ChatMember.kt │ │ │ ├── ChatMessage.kt │ │ │ └── ChatRoom.kt │ │ ├── common │ │ ├── AggregateRoot.kt │ │ ├── DomainEntity.kt │ │ └── DomainEvent.kt │ │ ├── meeting │ │ ├── entity │ │ │ ├── Meeting.kt │ │ │ └── MeetingAttendance.kt │ │ ├── enums │ │ │ ├── MeetingStatus.kt │ │ │ └── TeamType.kt │ │ ├── event │ │ │ └── MeetingCompletedEvent.kt │ │ └── exception │ │ │ └── MeetingException.kt │ │ ├── meetingTeam │ │ ├── entity │ │ │ ├── MeetingMember.kt │ │ │ ├── MeetingTeam.kt │ │ │ └── MeetingTeamMemberSummary.kt │ │ ├── enums │ │ │ ├── Location.kt │ │ │ ├── MeetingMemberRole.kt │ │ │ └── MeetingTeamStatus.kt │ │ ├── exception │ │ │ └── MeetingTeamException.kt │ │ └── vo │ │ │ └── TeamIntroduce.kt │ │ ├── suggestion │ │ └── entity │ │ │ └── Suggestion.kt │ │ ├── university │ │ ├── entity │ │ │ ├── Major.kt │ │ │ └── University.kt │ │ └── vo │ │ │ ├── MajorName.kt │ │ │ └── UniversityName.kt │ │ └── user │ │ ├── entity │ │ ├── DeletedUserInfo.kt │ │ ├── User.kt │ │ ├── UserAuthInfo.kt │ │ ├── UserProfileImage.kt │ │ ├── UserSil.kt │ │ └── UserUniversityVerificationInfo.kt │ │ ├── enums │ │ ├── AnimalType.kt │ │ ├── Gender.kt │ │ └── SocialLoginProvider.kt │ │ ├── exception │ │ └── UserException.kt │ │ └── vo │ │ ├── BirthYear.kt │ │ ├── Height.kt │ │ ├── KakaoId.kt │ │ ├── Mbti.kt │ │ ├── MbtiAffinityScore.kt │ │ └── Nickname.kt │ ├── test │ └── kotlin │ │ └── com │ │ └── studentcenter │ │ └── weave │ │ └── domain │ │ ├── chat │ │ └── entity │ │ │ └── ChatRoomTest.kt │ │ ├── meeting │ │ └── entity │ │ │ └── MeetingTest.kt │ │ ├── meetingTeam │ │ ├── entity │ │ │ ├── MeetingTeamMemberSummaryTest.kt │ │ │ └── MeetingTeamTest.kt │ │ └── vo │ │ │ └── TeamIntroduceTest.kt │ │ ├── university │ │ ├── entity │ │ │ ├── MajorTest.kt │ │ │ └── UniversityTest.kt │ │ └── vo │ │ │ ├── MajorNameTest.kt │ │ │ └── UniversityNameTest.kt │ │ └── user │ │ ├── entity │ │ ├── DeletedUserInfoTest.kt │ │ ├── UserAuthInfoTest.kt │ │ ├── UserProfileImageTest.kt │ │ ├── UserSilTest.kt │ │ └── UserTest.kt │ │ └── vo │ │ ├── BirthYearTest.kt │ │ ├── HeightTest.kt │ │ ├── MbtiTest.kt │ │ └── NicknameTest.kt │ └── testFixtures │ └── kotlin │ └── com │ └── studentcenter │ └── weave │ └── domain │ ├── chat │ └── entity │ │ ├── ChatMemberFixtureFactory.kt │ │ ├── ChatMessageFixtureFactory.kt │ │ └── ChatRoomFixtureFactory.kt │ ├── meeting │ └── entity │ │ ├── MeetingAttendanceFixtureFactory.kt │ │ └── MeetingFixtureFactory.kt │ ├── meetingTeam │ └── entity │ │ ├── MeetingTeamFixtureFactory.kt │ │ └── MeetingTeamMemberSummaryFixtureFactory.kt │ ├── university │ └── entity │ │ ├── MajorFixtureFactory.kt │ │ └── UniversityFixtureFactory.kt │ └── user │ └── entity │ ├── DeletedUserInfoFixtureFactory.kt │ ├── UserAuthInfoFixtureFactory.kt │ ├── UserFixtureFactory.kt │ └── UserUniversityVerificationInfoFixtureFactory.kt ├── gradle ├── libs.versions.toml └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── infrastructure ├── aws │ ├── build.gradle.kts │ └── src │ │ └── main │ │ ├── kotlin │ │ └── com │ │ │ └── studentcenter │ │ │ └── weave │ │ │ └── infrastructure │ │ │ └── aws │ │ │ ├── config │ │ │ └── AwsConfig.kt │ │ │ └── s3 │ │ │ ├── adapter │ │ │ └── UserProfileImageUrlS3Adapter.kt │ │ │ └── config │ │ │ ├── S3BucketProperties.kt │ │ │ └── S3Config.kt │ │ └── resources │ │ └── application-aws.yaml ├── client │ ├── build.gradle.kts │ └── src │ │ └── main │ │ ├── kotlin │ │ └── com │ │ │ └── studentcenter │ │ │ └── weave │ │ │ └── infrastructure │ │ │ └── client │ │ │ ├── common │ │ │ ├── config │ │ │ │ └── ClientConfig.kt │ │ │ ├── event │ │ │ │ └── EventType.kt │ │ │ └── properties │ │ │ │ └── ClientProperties.kt │ │ │ └── discord │ │ │ ├── common │ │ │ └── vo │ │ │ │ └── DiscordMessage.kt │ │ │ ├── meeting │ │ │ └── adaptor │ │ │ │ └── MeetingEventMessageDiscordAdaptor.kt │ │ │ ├── user │ │ │ └── adaptor │ │ │ │ └── UserEventDiscordAdaptor.kt │ │ │ └── util │ │ │ └── DiscordClient.kt │ │ └── resources │ │ └── application-client.yaml ├── mail │ ├── build.gradle.kts │ └── src │ │ └── main │ │ ├── kotlin │ │ └── com │ │ │ └── studentcenter │ │ │ └── weave │ │ │ └── infrastructure │ │ │ └── mail │ │ │ ├── adaptor │ │ │ └── VerificationNumberGmailAdaptor.kt │ │ │ ├── common │ │ │ ├── config │ │ │ │ └── MailConfig.kt │ │ │ └── exception │ │ │ │ └── MailException.kt │ │ │ └── ses │ │ │ ├── config │ │ │ └── SesConfig.kt │ │ │ ├── properties │ │ │ └── SesProperties.kt │ │ │ └── service │ │ │ └── AmazonSimpleEmailService.kt │ │ └── resources │ │ ├── application-mail.yaml │ │ └── mail-templates │ │ └── email-verification-number.html ├── persistence │ ├── build.gradle.kts │ └── src │ │ └── main │ │ ├── kotlin │ │ └── com │ │ │ └── studentcenter │ │ │ └── weave │ │ │ └── infrastructure │ │ │ └── persistence │ │ │ ├── chat │ │ │ ├── adapter │ │ │ │ ├── ChatMessageJpaAdapter.kt │ │ │ │ └── ChatRoomJpaAdapter.kt │ │ │ ├── enitty │ │ │ │ ├── ChatMessageJpaEntity.kt │ │ │ │ └── ChatRoomJpaEntity.kt │ │ │ └── repository │ │ │ │ ├── ChatMessageJpaRepository.kt │ │ │ │ └── ChatRoomJpaRepository.kt │ │ │ ├── common │ │ │ ├── config │ │ │ │ └── PersistenceConfig.kt │ │ │ └── exception │ │ │ │ └── PersistenceException.kt │ │ │ ├── meeting │ │ │ ├── adapter │ │ │ │ ├── MeetingAttendanceJpaAdapter.kt │ │ │ │ └── MeetingJpaAdapter.kt │ │ │ ├── entity │ │ │ │ ├── MeetingAttendanceJpaEntity.kt │ │ │ │ └── MeetingJpaEntity.kt │ │ │ └── repository │ │ │ │ ├── MeetingAttendanceJpaRepository.kt │ │ │ │ └── MeetingJpaRepository.kt │ │ │ ├── meetingTeam │ │ │ ├── adapter │ │ │ │ ├── MeetingTeamJpaAdapter.kt │ │ │ │ └── MeetingTeamMemberSummaryJpaAdapter.kt │ │ │ ├── entity │ │ │ │ ├── MeetingMemberJpaEntity.kt │ │ │ │ ├── MeetingTeamJpaEntity.kt │ │ │ │ └── MeetingTeamMemberSummaryJpaEntity.kt │ │ │ └── repository │ │ │ │ ├── MeetingTeamJpaRepository.kt │ │ │ │ └── MeetingTeamMemberSummaryJpaRepository.kt │ │ │ ├── suggestion │ │ │ ├── adapter │ │ │ │ └── SuggestionJpaAdapter.kt │ │ │ ├── entity │ │ │ │ └── SuggestionJpaEntity.kt │ │ │ └── repository │ │ │ │ └── SuggestionJpaRepository.kt │ │ │ ├── university │ │ │ ├── adapter │ │ │ │ ├── MajorJpaAdapter.kt │ │ │ │ └── UniversityJpaAdapter.kt │ │ │ ├── entity │ │ │ │ ├── MajorJpaEntity.kt │ │ │ │ └── UniversityJpaEntity.kt │ │ │ └── repository │ │ │ │ ├── MajorJpaRepository.kt │ │ │ │ └── UniversityJpaRepository.kt │ │ │ └── user │ │ │ ├── adapter │ │ │ ├── DeletedUserInfoJpaAdapter.kt │ │ │ ├── UserAuthInfoJpaAdapter.kt │ │ │ ├── UserJpaAdapter.kt │ │ │ ├── UserSilJpaAdapter.kt │ │ │ └── UserUniversityVerificationInfoJpaAdapter.kt │ │ │ ├── entity │ │ │ ├── DeletedUserInfoJpaEntity.kt │ │ │ ├── PreRegisteredEmail.kt │ │ │ ├── UserAuthInfoJpaEntity.kt │ │ │ ├── UserJpaEntity.kt │ │ │ ├── UserProfileImageJpaEntity.kt │ │ │ ├── UserSilJpaEntity.kt │ │ │ └── UserUniveristyVerificationInfoJpaEntity.kt │ │ │ └── repository │ │ │ ├── DeletedUserInfoJpaRepository.kt │ │ │ ├── PreRegisteredEmailRepository.kt │ │ │ ├── UserAuthInfoJpaRepository.kt │ │ │ ├── UserJpaRepository.kt │ │ │ ├── UserSilJpaRepository.kt │ │ │ └── UserUniversityVerificationInfoJpaRepository.kt │ │ └── resources │ │ ├── application-persistence.yaml │ │ └── db │ │ ├── migration │ │ ├── V10__update_universities.sql │ │ ├── V11__change_meeting_team_add_gender.sql │ │ ├── V12__create_user_university_verification_info.sql │ │ ├── V13__create_meeting_member.sql │ │ ├── V14__create_meeting_and_meeting_attendance.sql │ │ ├── V15__create_meeting_team_member_summary.sql │ │ ├── V16__add_user_kakao_id.sql │ │ ├── V17__add_university_display_name.sql │ │ ├── V18__add_profile_image.sql │ │ ├── V19__create_chat_room.sql │ │ ├── V1__init_user_auth_info.sql │ │ ├── V20__create_chat_message.sql │ │ ├── V21__create_pre_registered_user.sql │ │ ├── V22__create_suggestion.sql │ │ ├── V2__Create_universities_and_majors.sql │ │ ├── V3__create_user.sql │ │ ├── V4__user_add_column.sql │ │ ├── V5__create_meeting_team.sql │ │ ├── V6__create_deleted_user_info.sql │ │ ├── V7__meeting_team_add_status_column.sql │ │ ├── V8__create_user_sil.sql │ │ └── V9__change_user_id_index_to_unique.sql │ │ └── seed │ │ ├── 230205_insert_university_major.sql │ │ ├── 230408_insert_temp_university_major.sql │ │ ├── insert_meeting.sql │ │ ├── insert_meeting_team_and_meeting_member.sql │ │ └── insert_user.sql └── redis │ ├── build.gradle.kts │ └── src │ └── main │ ├── kotlin │ └── com │ │ └── studentcenter │ │ └── weave │ │ └── infrastructure │ │ └── redis │ │ ├── chat │ │ ├── adapter │ │ │ ├── ChatMessageRedisConsumer.kt │ │ │ └── ChatMessageRedisPublisher.kt │ │ └── config │ │ │ └── ChatMessageRedisConfig.kt │ │ ├── common │ │ ├── config │ │ │ └── RedisConfig.kt │ │ └── properties │ │ │ └── RedisProperties.kt │ │ ├── meetingTeam │ │ ├── adapter │ │ │ └── MeetingTeamInvitationRedisAdapter.kt │ │ ├── entity │ │ │ └── MeetingTeamInvitationRedisHash.kt │ │ └── repository │ │ │ └── MeetingTeamInvitationRedisRepository.kt │ │ └── user │ │ ├── adapter │ │ ├── UserRefreshTokenRedisAdapter.kt │ │ └── UserVerificationNumberRedisAdapter.kt │ │ ├── entity │ │ ├── UserRefreshTokenRedisHash.kt │ │ └── UserVerificationNumberRedisHash.kt │ │ └── repository │ │ ├── UserRefreshTokenRedisRepository.kt │ │ └── UserVerificationNumberRedisRepository.kt │ └── resources │ └── application-redis.yaml ├── settings.gradle.kts └── support ├── common ├── build.gradle.kts └── src │ ├── main │ └── kotlin │ │ └── com │ │ └── studentcenter │ │ └── weave │ │ └── support │ │ └── common │ │ ├── dto │ │ ├── ScrollRequest.kt │ │ └── ScrollResponse.kt │ │ ├── exception │ │ ├── CustomException.kt │ │ └── SystemException.kt │ │ ├── uuid │ │ └── UuidCreator.kt │ │ └── vo │ │ ├── Email.kt │ │ ├── UpdateParam.kt │ │ └── Url.kt │ └── test │ └── kotlin │ └── com │ └── studentcenter │ └── weave │ └── support │ └── common │ └── vo │ ├── EmailTest.kt │ └── UrlTest.kt ├── jacoco └── build.gradle.kts ├── lock ├── build.gradle.kts └── src │ ├── main │ └── kotlin │ │ └── com │ │ └── studentcenter │ │ └── weave │ │ └── support │ │ └── lock │ │ ├── DistributedLock.kt │ │ ├── DistributedLockAspect.kt │ │ ├── DistributedLockConfig.kt │ │ └── DistributedLockTransactionProcessor.kt │ └── testFixtures │ └── kotlin │ └── com │ └── studentcetner │ └── weave │ └── support │ └── lock │ └── DistributedLockTestInitializer.kt ├── logger └── build.gradle.kts └── security ├── build.gradle.kts └── src ├── main └── kotlin │ └── com │ └── studentcenter │ └── weave │ └── support │ └── security │ ├── authority │ └── Authentication.kt │ ├── context │ ├── SecurityContext.kt │ └── SecurityContextHolder.kt │ └── jwt │ ├── exception │ └── JwtException.kt │ ├── util │ └── JwtTokenProvider.kt │ └── vo │ ├── JwtClaims.kt │ └── JwtClaimsDsl.kt └── test └── kotlin └── com └── studentcenter └── weave └── support └── security └── jwt └── util └── JwtTokenProviderTest.kt /.githooks/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/.githooks/install.sh -------------------------------------------------------------------------------- /.githooks/prepare-commit-msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/.githooks/prepare-commit-msg -------------------------------------------------------------------------------- /.github/codeowners: -------------------------------------------------------------------------------- 1 | * @waterfogSW @dojinyou @rilac1 2 | -------------------------------------------------------------------------------- /.github/workflows/develop_server_deployer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/.github/workflows/develop_server_deployer.yaml -------------------------------------------------------------------------------- /.github/workflows/develop_server_integrator.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/.github/workflows/develop_server_integrator.yaml -------------------------------------------------------------------------------- /.github/workflows/pr_validator.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/.github/workflows/pr_validator.yml -------------------------------------------------------------------------------- /.github/workflows/production_server_deployer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/.github/workflows/production_server_deployer.yaml -------------------------------------------------------------------------------- /.github/workflows/unit_test_runner.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/.github/workflows/unit_test_runner.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile-http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/Dockerfile-http -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/README.md -------------------------------------------------------------------------------- /application/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/application/build.gradle.kts -------------------------------------------------------------------------------- /application/src/main/kotlin/com/studentcenter/weave/application/chat/port/inbound/CreateChatRoom.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/application/src/main/kotlin/com/studentcenter/weave/application/chat/port/inbound/CreateChatRoom.kt -------------------------------------------------------------------------------- /application/src/main/kotlin/com/studentcenter/weave/application/chat/port/inbound/GetChatMessage.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/application/src/main/kotlin/com/studentcenter/weave/application/chat/port/inbound/GetChatMessage.kt -------------------------------------------------------------------------------- /application/src/main/kotlin/com/studentcenter/weave/application/chat/port/inbound/GetChatRoom.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/application/src/main/kotlin/com/studentcenter/weave/application/chat/port/inbound/GetChatRoom.kt -------------------------------------------------------------------------------- /application/src/main/kotlin/com/studentcenter/weave/application/chat/port/inbound/SendChatMessage.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/application/src/main/kotlin/com/studentcenter/weave/application/chat/port/inbound/SendChatMessage.kt -------------------------------------------------------------------------------- /application/src/main/kotlin/com/studentcenter/weave/application/chat/port/outbound/ChatMessagePublisher.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/application/src/main/kotlin/com/studentcenter/weave/application/chat/port/outbound/ChatMessagePublisher.kt -------------------------------------------------------------------------------- /application/src/main/kotlin/com/studentcenter/weave/application/chat/port/outbound/ChatMessageRepository.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/application/src/main/kotlin/com/studentcenter/weave/application/chat/port/outbound/ChatMessageRepository.kt -------------------------------------------------------------------------------- /application/src/main/kotlin/com/studentcenter/weave/application/chat/port/outbound/ChatRoomRepository.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/application/src/main/kotlin/com/studentcenter/weave/application/chat/port/outbound/ChatRoomRepository.kt -------------------------------------------------------------------------------- /application/src/main/kotlin/com/studentcenter/weave/application/chat/service/CreateChatRoomService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/application/src/main/kotlin/com/studentcenter/weave/application/chat/service/CreateChatRoomService.kt -------------------------------------------------------------------------------- /application/src/main/kotlin/com/studentcenter/weave/application/chat/service/GetChatMessageService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/application/src/main/kotlin/com/studentcenter/weave/application/chat/service/GetChatMessageService.kt -------------------------------------------------------------------------------- /application/src/main/kotlin/com/studentcenter/weave/application/chat/service/GetChatRoomService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/application/src/main/kotlin/com/studentcenter/weave/application/chat/service/GetChatRoomService.kt -------------------------------------------------------------------------------- /application/src/main/kotlin/com/studentcenter/weave/application/chat/service/SendChatMessageService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/application/src/main/kotlin/com/studentcenter/weave/application/chat/service/SendChatMessageService.kt -------------------------------------------------------------------------------- /application/src/main/kotlin/com/studentcenter/weave/application/chat/vo/ChatRoomDetail.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/application/src/main/kotlin/com/studentcenter/weave/application/chat/vo/ChatRoomDetail.kt -------------------------------------------------------------------------------- /application/src/main/kotlin/com/studentcenter/weave/application/common/config/ApplicationConfig.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/application/src/main/kotlin/com/studentcenter/weave/application/common/config/ApplicationConfig.kt -------------------------------------------------------------------------------- /application/src/main/kotlin/com/studentcenter/weave/application/common/exception/AuthException.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/application/src/main/kotlin/com/studentcenter/weave/application/common/exception/AuthException.kt -------------------------------------------------------------------------------- /application/src/main/kotlin/com/studentcenter/weave/application/common/exception/UniversityVerificationException.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/application/src/main/kotlin/com/studentcenter/weave/application/common/exception/UniversityVerificationException.kt -------------------------------------------------------------------------------- /application/src/main/kotlin/com/studentcenter/weave/application/common/properties/JwtTokenProperties.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/application/src/main/kotlin/com/studentcenter/weave/application/common/properties/JwtTokenProperties.kt -------------------------------------------------------------------------------- /application/src/main/kotlin/com/studentcenter/weave/application/common/properties/MeetingTeamInvitationProperties.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/application/src/main/kotlin/com/studentcenter/weave/application/common/properties/MeetingTeamInvitationProperties.kt -------------------------------------------------------------------------------- /application/src/main/kotlin/com/studentcenter/weave/application/common/properties/OpenIdProperties.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/application/src/main/kotlin/com/studentcenter/weave/application/common/properties/OpenIdProperties.kt -------------------------------------------------------------------------------- /application/src/main/kotlin/com/studentcenter/weave/application/common/security/context/UserSecurityContext.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/application/src/main/kotlin/com/studentcenter/weave/application/common/security/context/UserSecurityContext.kt -------------------------------------------------------------------------------- /application/src/main/kotlin/com/studentcenter/weave/application/common/security/context/UserSecuritySupport.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/application/src/main/kotlin/com/studentcenter/weave/application/common/security/context/UserSecuritySupport.kt -------------------------------------------------------------------------------- /application/src/main/kotlin/com/studentcenter/weave/application/meeting/port/inbound/CancelAllMeeting.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/application/src/main/kotlin/com/studentcenter/weave/application/meeting/port/inbound/CancelAllMeeting.kt -------------------------------------------------------------------------------- /application/src/main/kotlin/com/studentcenter/weave/application/meeting/port/inbound/CancelEndedPendingMeeting.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/application/src/main/kotlin/com/studentcenter/weave/application/meeting/port/inbound/CancelEndedPendingMeeting.kt -------------------------------------------------------------------------------- /application/src/main/kotlin/com/studentcenter/weave/application/meeting/port/inbound/CreateMeetingAttendance.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/application/src/main/kotlin/com/studentcenter/weave/application/meeting/port/inbound/CreateMeetingAttendance.kt -------------------------------------------------------------------------------- /application/src/main/kotlin/com/studentcenter/weave/application/meeting/port/inbound/FindMyRequestMeetingByReceivingTeamId.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/application/src/main/kotlin/com/studentcenter/weave/application/meeting/port/inbound/FindMyRequestMeetingByReceivingTeamId.kt -------------------------------------------------------------------------------- /application/src/main/kotlin/com/studentcenter/weave/application/meeting/port/inbound/GetAllOtherTeamMemberInfo.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/application/src/main/kotlin/com/studentcenter/weave/application/meeting/port/inbound/GetAllOtherTeamMemberInfo.kt -------------------------------------------------------------------------------- /application/src/main/kotlin/com/studentcenter/weave/application/meeting/port/inbound/GetMeetingAttendances.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/application/src/main/kotlin/com/studentcenter/weave/application/meeting/port/inbound/GetMeetingAttendances.kt -------------------------------------------------------------------------------- /application/src/main/kotlin/com/studentcenter/weave/application/meeting/port/inbound/NotifyMeetingEvent.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/application/src/main/kotlin/com/studentcenter/weave/application/meeting/port/inbound/NotifyMeetingEvent.kt -------------------------------------------------------------------------------- /application/src/main/kotlin/com/studentcenter/weave/application/meeting/port/inbound/RequestMeeting.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/application/src/main/kotlin/com/studentcenter/weave/application/meeting/port/inbound/RequestMeeting.kt -------------------------------------------------------------------------------- /application/src/main/kotlin/com/studentcenter/weave/application/meeting/port/inbound/ScrollPendingMeeting.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/application/src/main/kotlin/com/studentcenter/weave/application/meeting/port/inbound/ScrollPendingMeeting.kt -------------------------------------------------------------------------------- /application/src/main/kotlin/com/studentcenter/weave/application/meeting/port/inbound/ScrollPreparedMeeting.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/application/src/main/kotlin/com/studentcenter/weave/application/meeting/port/inbound/ScrollPreparedMeeting.kt -------------------------------------------------------------------------------- /application/src/main/kotlin/com/studentcenter/weave/application/meeting/port/outbound/MeetingAttendanceRepository.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/application/src/main/kotlin/com/studentcenter/weave/application/meeting/port/outbound/MeetingAttendanceRepository.kt -------------------------------------------------------------------------------- /application/src/main/kotlin/com/studentcenter/weave/application/meeting/port/outbound/MeetingEventMessagePort.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/application/src/main/kotlin/com/studentcenter/weave/application/meeting/port/outbound/MeetingEventMessagePort.kt -------------------------------------------------------------------------------- /application/src/main/kotlin/com/studentcenter/weave/application/meeting/port/outbound/MeetingEventPublisher.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/application/src/main/kotlin/com/studentcenter/weave/application/meeting/port/outbound/MeetingEventPublisher.kt -------------------------------------------------------------------------------- /application/src/main/kotlin/com/studentcenter/weave/application/meeting/port/outbound/MeetingRepository.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/application/src/main/kotlin/com/studentcenter/weave/application/meeting/port/outbound/MeetingRepository.kt -------------------------------------------------------------------------------- /application/src/main/kotlin/com/studentcenter/weave/application/meeting/service/application/CancelAllMeetingService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/application/src/main/kotlin/com/studentcenter/weave/application/meeting/service/application/CancelAllMeetingService.kt -------------------------------------------------------------------------------- /application/src/main/kotlin/com/studentcenter/weave/application/meeting/service/application/CancelEndedPendingMeetingService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/application/src/main/kotlin/com/studentcenter/weave/application/meeting/service/application/CancelEndedPendingMeetingService.kt -------------------------------------------------------------------------------- /application/src/main/kotlin/com/studentcenter/weave/application/meeting/service/application/CreateMeetingAttendanceService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/application/src/main/kotlin/com/studentcenter/weave/application/meeting/service/application/CreateMeetingAttendanceService.kt -------------------------------------------------------------------------------- /application/src/main/kotlin/com/studentcenter/weave/application/meeting/service/application/FindMyRequestMeetingByReceivingTeamIdService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/application/src/main/kotlin/com/studentcenter/weave/application/meeting/service/application/FindMyRequestMeetingByReceivingTeamIdService.kt -------------------------------------------------------------------------------- /application/src/main/kotlin/com/studentcenter/weave/application/meeting/service/application/GetAllOtherTeamMemberInfoService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/application/src/main/kotlin/com/studentcenter/weave/application/meeting/service/application/GetAllOtherTeamMemberInfoService.kt -------------------------------------------------------------------------------- /application/src/main/kotlin/com/studentcenter/weave/application/meeting/service/application/GetMeetingAttendancesService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/application/src/main/kotlin/com/studentcenter/weave/application/meeting/service/application/GetMeetingAttendancesService.kt -------------------------------------------------------------------------------- /application/src/main/kotlin/com/studentcenter/weave/application/meeting/service/application/NotifyMeetingEventService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/application/src/main/kotlin/com/studentcenter/weave/application/meeting/service/application/NotifyMeetingEventService.kt -------------------------------------------------------------------------------- /application/src/main/kotlin/com/studentcenter/weave/application/meeting/service/application/RequestMeetingService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/application/src/main/kotlin/com/studentcenter/weave/application/meeting/service/application/RequestMeetingService.kt -------------------------------------------------------------------------------- /application/src/main/kotlin/com/studentcenter/weave/application/meeting/service/application/ScrollPendingMeetingService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/application/src/main/kotlin/com/studentcenter/weave/application/meeting/service/application/ScrollPendingMeetingService.kt -------------------------------------------------------------------------------- /application/src/main/kotlin/com/studentcenter/weave/application/meeting/service/application/ScrollPreparedMeetingService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/application/src/main/kotlin/com/studentcenter/weave/application/meeting/service/application/ScrollPreparedMeetingService.kt -------------------------------------------------------------------------------- /application/src/main/kotlin/com/studentcenter/weave/application/meeting/service/domain/MeetingAttendanceDomainService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/application/src/main/kotlin/com/studentcenter/weave/application/meeting/service/domain/MeetingAttendanceDomainService.kt -------------------------------------------------------------------------------- /application/src/main/kotlin/com/studentcenter/weave/application/meeting/service/domain/MeetingDomainService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/application/src/main/kotlin/com/studentcenter/weave/application/meeting/service/domain/MeetingDomainService.kt -------------------------------------------------------------------------------- /application/src/main/kotlin/com/studentcenter/weave/application/meeting/service/domain/MeetingEventService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/application/src/main/kotlin/com/studentcenter/weave/application/meeting/service/domain/MeetingEventService.kt -------------------------------------------------------------------------------- /application/src/main/kotlin/com/studentcenter/weave/application/meeting/service/domain/impl/MeetingAttendanceDomainServiceImpl.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/application/src/main/kotlin/com/studentcenter/weave/application/meeting/service/domain/impl/MeetingAttendanceDomainServiceImpl.kt -------------------------------------------------------------------------------- /application/src/main/kotlin/com/studentcenter/weave/application/meeting/service/domain/impl/MeetingDomainServiceImpl.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/application/src/main/kotlin/com/studentcenter/weave/application/meeting/service/domain/impl/MeetingDomainServiceImpl.kt -------------------------------------------------------------------------------- /application/src/main/kotlin/com/studentcenter/weave/application/meeting/vo/MeetingMatchingEvent.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/application/src/main/kotlin/com/studentcenter/weave/application/meeting/vo/MeetingMatchingEvent.kt -------------------------------------------------------------------------------- /application/src/main/kotlin/com/studentcenter/weave/application/meeting/vo/PendingMeetingInfo.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/application/src/main/kotlin/com/studentcenter/weave/application/meeting/vo/PendingMeetingInfo.kt -------------------------------------------------------------------------------- /application/src/main/kotlin/com/studentcenter/weave/application/meeting/vo/PreparedMeetingInfo.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/application/src/main/kotlin/com/studentcenter/weave/application/meeting/vo/PreparedMeetingInfo.kt -------------------------------------------------------------------------------- /application/src/main/kotlin/com/studentcenter/weave/application/meetingTeam/port/inbound/CreateInvitationLink.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/application/src/main/kotlin/com/studentcenter/weave/application/meetingTeam/port/inbound/CreateInvitationLink.kt -------------------------------------------------------------------------------- /application/src/main/kotlin/com/studentcenter/weave/application/meetingTeam/port/inbound/CreateMeetingTeam.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/application/src/main/kotlin/com/studentcenter/weave/application/meetingTeam/port/inbound/CreateMeetingTeam.kt -------------------------------------------------------------------------------- /application/src/main/kotlin/com/studentcenter/weave/application/meetingTeam/port/inbound/DeleteMeetingTeam.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/application/src/main/kotlin/com/studentcenter/weave/application/meetingTeam/port/inbound/DeleteMeetingTeam.kt -------------------------------------------------------------------------------- /application/src/main/kotlin/com/studentcenter/weave/application/meetingTeam/port/inbound/EditMeetingTeam.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/application/src/main/kotlin/com/studentcenter/weave/application/meetingTeam/port/inbound/EditMeetingTeam.kt -------------------------------------------------------------------------------- /application/src/main/kotlin/com/studentcenter/weave/application/meetingTeam/port/inbound/GetAllMeetingTeamInfo.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/application/src/main/kotlin/com/studentcenter/weave/application/meetingTeam/port/inbound/GetAllMeetingTeamInfo.kt -------------------------------------------------------------------------------- /application/src/main/kotlin/com/studentcenter/weave/application/meetingTeam/port/inbound/GetListMeetingTeam.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/application/src/main/kotlin/com/studentcenter/weave/application/meetingTeam/port/inbound/GetListMeetingTeam.kt -------------------------------------------------------------------------------- /application/src/main/kotlin/com/studentcenter/weave/application/meetingTeam/port/inbound/GetMeetingTeam.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/application/src/main/kotlin/com/studentcenter/weave/application/meetingTeam/port/inbound/GetMeetingTeam.kt -------------------------------------------------------------------------------- /application/src/main/kotlin/com/studentcenter/weave/application/meetingTeam/port/inbound/GetMeetingTeamByInvitationCode.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/application/src/main/kotlin/com/studentcenter/weave/application/meetingTeam/port/inbound/GetMeetingTeamByInvitationCode.kt -------------------------------------------------------------------------------- /application/src/main/kotlin/com/studentcenter/weave/application/meetingTeam/port/inbound/GetMeetingTeamDetail.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/application/src/main/kotlin/com/studentcenter/weave/application/meetingTeam/port/inbound/GetMeetingTeamDetail.kt -------------------------------------------------------------------------------- /application/src/main/kotlin/com/studentcenter/weave/application/meetingTeam/port/inbound/GetMyMeetingTeam.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/application/src/main/kotlin/com/studentcenter/weave/application/meetingTeam/port/inbound/GetMyMeetingTeam.kt -------------------------------------------------------------------------------- /application/src/main/kotlin/com/studentcenter/weave/application/meetingTeam/port/inbound/JoinMeetingTeam.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/application/src/main/kotlin/com/studentcenter/weave/application/meetingTeam/port/inbound/JoinMeetingTeam.kt -------------------------------------------------------------------------------- /application/src/main/kotlin/com/studentcenter/weave/application/meetingTeam/port/inbound/LeaveMeetingTeam.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/application/src/main/kotlin/com/studentcenter/weave/application/meetingTeam/port/inbound/LeaveMeetingTeam.kt -------------------------------------------------------------------------------- /application/src/main/kotlin/com/studentcenter/weave/application/meetingTeam/port/outbound/MeetingTeamInvitationRepository.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/application/src/main/kotlin/com/studentcenter/weave/application/meetingTeam/port/outbound/MeetingTeamInvitationRepository.kt -------------------------------------------------------------------------------- /application/src/main/kotlin/com/studentcenter/weave/application/meetingTeam/port/outbound/MeetingTeamMemberSummaryRepository.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/application/src/main/kotlin/com/studentcenter/weave/application/meetingTeam/port/outbound/MeetingTeamMemberSummaryRepository.kt -------------------------------------------------------------------------------- /application/src/main/kotlin/com/studentcenter/weave/application/meetingTeam/port/outbound/MeetingTeamRepository.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/application/src/main/kotlin/com/studentcenter/weave/application/meetingTeam/port/outbound/MeetingTeamRepository.kt -------------------------------------------------------------------------------- /application/src/main/kotlin/com/studentcenter/weave/application/meetingTeam/service/application/CreateInvitationLinkService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/application/src/main/kotlin/com/studentcenter/weave/application/meetingTeam/service/application/CreateInvitationLinkService.kt -------------------------------------------------------------------------------- /application/src/main/kotlin/com/studentcenter/weave/application/meetingTeam/service/application/CreateMeetingTeamService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/application/src/main/kotlin/com/studentcenter/weave/application/meetingTeam/service/application/CreateMeetingTeamService.kt -------------------------------------------------------------------------------- /application/src/main/kotlin/com/studentcenter/weave/application/meetingTeam/service/application/DeleteMeetingTeamService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/application/src/main/kotlin/com/studentcenter/weave/application/meetingTeam/service/application/DeleteMeetingTeamService.kt -------------------------------------------------------------------------------- /application/src/main/kotlin/com/studentcenter/weave/application/meetingTeam/service/application/EditMeetingTeamService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/application/src/main/kotlin/com/studentcenter/weave/application/meetingTeam/service/application/EditMeetingTeamService.kt -------------------------------------------------------------------------------- /application/src/main/kotlin/com/studentcenter/weave/application/meetingTeam/service/application/GetAllMeetingTeamInfoService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/application/src/main/kotlin/com/studentcenter/weave/application/meetingTeam/service/application/GetAllMeetingTeamInfoService.kt -------------------------------------------------------------------------------- /application/src/main/kotlin/com/studentcenter/weave/application/meetingTeam/service/application/GetListMeetingTeamService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/application/src/main/kotlin/com/studentcenter/weave/application/meetingTeam/service/application/GetListMeetingTeamService.kt -------------------------------------------------------------------------------- /application/src/main/kotlin/com/studentcenter/weave/application/meetingTeam/service/application/GetMeetingTeamByInvitationCodeService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/application/src/main/kotlin/com/studentcenter/weave/application/meetingTeam/service/application/GetMeetingTeamByInvitationCodeService.kt -------------------------------------------------------------------------------- /application/src/main/kotlin/com/studentcenter/weave/application/meetingTeam/service/application/GetMeetingTeamDetailService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/application/src/main/kotlin/com/studentcenter/weave/application/meetingTeam/service/application/GetMeetingTeamDetailService.kt -------------------------------------------------------------------------------- /application/src/main/kotlin/com/studentcenter/weave/application/meetingTeam/service/application/GetMeetingTeamService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/application/src/main/kotlin/com/studentcenter/weave/application/meetingTeam/service/application/GetMeetingTeamService.kt -------------------------------------------------------------------------------- /application/src/main/kotlin/com/studentcenter/weave/application/meetingTeam/service/application/GetMyMeetingTeamService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/application/src/main/kotlin/com/studentcenter/weave/application/meetingTeam/service/application/GetMyMeetingTeamService.kt -------------------------------------------------------------------------------- /application/src/main/kotlin/com/studentcenter/weave/application/meetingTeam/service/application/JoinMeetingTeamService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/application/src/main/kotlin/com/studentcenter/weave/application/meetingTeam/service/application/JoinMeetingTeamService.kt -------------------------------------------------------------------------------- /application/src/main/kotlin/com/studentcenter/weave/application/meetingTeam/service/application/LeaveMeetingTeamService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/application/src/main/kotlin/com/studentcenter/weave/application/meetingTeam/service/application/LeaveMeetingTeamService.kt -------------------------------------------------------------------------------- /application/src/main/kotlin/com/studentcenter/weave/application/meetingTeam/service/domain/MeetingTeamDomainService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/application/src/main/kotlin/com/studentcenter/weave/application/meetingTeam/service/domain/MeetingTeamDomainService.kt -------------------------------------------------------------------------------- /application/src/main/kotlin/com/studentcenter/weave/application/meetingTeam/service/domain/impl/MeetingTeamDomainServiceImpl.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/application/src/main/kotlin/com/studentcenter/weave/application/meetingTeam/service/domain/impl/MeetingTeamDomainServiceImpl.kt -------------------------------------------------------------------------------- /application/src/main/kotlin/com/studentcenter/weave/application/meetingTeam/util/MeetingTeamInvitationService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/application/src/main/kotlin/com/studentcenter/weave/application/meetingTeam/util/MeetingTeamInvitationService.kt -------------------------------------------------------------------------------- /application/src/main/kotlin/com/studentcenter/weave/application/meetingTeam/util/impl/MeetingTeamInvitationServiceImpl.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/application/src/main/kotlin/com/studentcenter/weave/application/meetingTeam/util/impl/MeetingTeamInvitationServiceImpl.kt -------------------------------------------------------------------------------- /application/src/main/kotlin/com/studentcenter/weave/application/meetingTeam/vo/MeetingMemberDetail.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/application/src/main/kotlin/com/studentcenter/weave/application/meetingTeam/vo/MeetingMemberDetail.kt -------------------------------------------------------------------------------- /application/src/main/kotlin/com/studentcenter/weave/application/meetingTeam/vo/MeetingTeamInfo.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/application/src/main/kotlin/com/studentcenter/weave/application/meetingTeam/vo/MeetingTeamInfo.kt -------------------------------------------------------------------------------- /application/src/main/kotlin/com/studentcenter/weave/application/meetingTeam/vo/MeetingTeamInvitation.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/application/src/main/kotlin/com/studentcenter/weave/application/meetingTeam/vo/MeetingTeamInvitation.kt -------------------------------------------------------------------------------- /application/src/main/kotlin/com/studentcenter/weave/application/meetingTeam/vo/MeetingTeamListFilter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/application/src/main/kotlin/com/studentcenter/weave/application/meetingTeam/vo/MeetingTeamListFilter.kt -------------------------------------------------------------------------------- /application/src/main/kotlin/com/studentcenter/weave/application/meetingTeam/vo/MemberInfo.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/application/src/main/kotlin/com/studentcenter/weave/application/meetingTeam/vo/MemberInfo.kt -------------------------------------------------------------------------------- /application/src/main/kotlin/com/studentcenter/weave/application/meetingTeam/vo/MyMeetingTeamInfo.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/application/src/main/kotlin/com/studentcenter/weave/application/meetingTeam/vo/MyMeetingTeamInfo.kt -------------------------------------------------------------------------------- /application/src/main/kotlin/com/studentcenter/weave/application/suggestion/port/inbound/CreateSuggestion.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/application/src/main/kotlin/com/studentcenter/weave/application/suggestion/port/inbound/CreateSuggestion.kt -------------------------------------------------------------------------------- /application/src/main/kotlin/com/studentcenter/weave/application/suggestion/port/outbound/SuggestionRepository.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/application/src/main/kotlin/com/studentcenter/weave/application/suggestion/port/outbound/SuggestionRepository.kt -------------------------------------------------------------------------------- /application/src/main/kotlin/com/studentcenter/weave/application/suggestion/service/CreateSuggestionService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/application/src/main/kotlin/com/studentcenter/weave/application/suggestion/service/CreateSuggestionService.kt -------------------------------------------------------------------------------- /application/src/main/kotlin/com/studentcenter/weave/application/university/port/inbound/GetMajor.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/application/src/main/kotlin/com/studentcenter/weave/application/university/port/inbound/GetMajor.kt -------------------------------------------------------------------------------- /application/src/main/kotlin/com/studentcenter/weave/application/university/port/inbound/GetUniversity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/application/src/main/kotlin/com/studentcenter/weave/application/university/port/inbound/GetUniversity.kt -------------------------------------------------------------------------------- /application/src/main/kotlin/com/studentcenter/weave/application/university/port/outbound/MajorRepository.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/application/src/main/kotlin/com/studentcenter/weave/application/university/port/outbound/MajorRepository.kt -------------------------------------------------------------------------------- /application/src/main/kotlin/com/studentcenter/weave/application/university/port/outbound/UniversityRepository.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/application/src/main/kotlin/com/studentcenter/weave/application/university/port/outbound/UniversityRepository.kt -------------------------------------------------------------------------------- /application/src/main/kotlin/com/studentcenter/weave/application/university/service/application/GetMajorService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/application/src/main/kotlin/com/studentcenter/weave/application/university/service/application/GetMajorService.kt -------------------------------------------------------------------------------- /application/src/main/kotlin/com/studentcenter/weave/application/university/service/application/GetUniversityService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/application/src/main/kotlin/com/studentcenter/weave/application/university/service/application/GetUniversityService.kt -------------------------------------------------------------------------------- /application/src/main/kotlin/com/studentcenter/weave/application/university/service/domain/MajorDomainService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/application/src/main/kotlin/com/studentcenter/weave/application/university/service/domain/MajorDomainService.kt -------------------------------------------------------------------------------- /application/src/main/kotlin/com/studentcenter/weave/application/university/service/domain/UniversityDomainService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/application/src/main/kotlin/com/studentcenter/weave/application/university/service/domain/UniversityDomainService.kt -------------------------------------------------------------------------------- /application/src/main/kotlin/com/studentcenter/weave/application/university/service/domain/impl/MajorDomainServiceImpl.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/application/src/main/kotlin/com/studentcenter/weave/application/university/service/domain/impl/MajorDomainServiceImpl.kt -------------------------------------------------------------------------------- /application/src/main/kotlin/com/studentcenter/weave/application/university/service/domain/impl/UniversityDomainServiceImpl.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/application/src/main/kotlin/com/studentcenter/weave/application/university/service/domain/impl/UniversityDomainServiceImpl.kt -------------------------------------------------------------------------------- /application/src/main/kotlin/com/studentcenter/weave/application/user/port/inbound/CompleteProfileImageUpload.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/application/src/main/kotlin/com/studentcenter/weave/application/user/port/inbound/CompleteProfileImageUpload.kt -------------------------------------------------------------------------------- /application/src/main/kotlin/com/studentcenter/weave/application/user/port/inbound/GetMyProfile.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/application/src/main/kotlin/com/studentcenter/weave/application/user/port/inbound/GetMyProfile.kt -------------------------------------------------------------------------------- /application/src/main/kotlin/com/studentcenter/weave/application/user/port/inbound/GetProfileImageUploadUrl.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/application/src/main/kotlin/com/studentcenter/weave/application/user/port/inbound/GetProfileImageUploadUrl.kt -------------------------------------------------------------------------------- /application/src/main/kotlin/com/studentcenter/weave/application/user/port/inbound/GetUser.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/application/src/main/kotlin/com/studentcenter/weave/application/user/port/inbound/GetUser.kt -------------------------------------------------------------------------------- /application/src/main/kotlin/com/studentcenter/weave/application/user/port/inbound/Logout.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/application/src/main/kotlin/com/studentcenter/weave/application/user/port/inbound/Logout.kt -------------------------------------------------------------------------------- /application/src/main/kotlin/com/studentcenter/weave/application/user/port/inbound/RefreshToken.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/application/src/main/kotlin/com/studentcenter/weave/application/user/port/inbound/RefreshToken.kt -------------------------------------------------------------------------------- /application/src/main/kotlin/com/studentcenter/weave/application/user/port/inbound/RegisterUser.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/application/src/main/kotlin/com/studentcenter/weave/application/user/port/inbound/RegisterUser.kt -------------------------------------------------------------------------------- /application/src/main/kotlin/com/studentcenter/weave/application/user/port/inbound/SendVerificationEmail.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/application/src/main/kotlin/com/studentcenter/weave/application/user/port/inbound/SendVerificationEmail.kt -------------------------------------------------------------------------------- /application/src/main/kotlin/com/studentcenter/weave/application/user/port/inbound/SocialLogin.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/application/src/main/kotlin/com/studentcenter/weave/application/user/port/inbound/SocialLogin.kt -------------------------------------------------------------------------------- /application/src/main/kotlin/com/studentcenter/weave/application/user/port/inbound/UnregisterUser.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/application/src/main/kotlin/com/studentcenter/weave/application/user/port/inbound/UnregisterUser.kt -------------------------------------------------------------------------------- /application/src/main/kotlin/com/studentcenter/weave/application/user/port/inbound/UpdateMyAnimalType.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/application/src/main/kotlin/com/studentcenter/weave/application/user/port/inbound/UpdateMyAnimalType.kt -------------------------------------------------------------------------------- /application/src/main/kotlin/com/studentcenter/weave/application/user/port/inbound/UpdateMyHeight.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/application/src/main/kotlin/com/studentcenter/weave/application/user/port/inbound/UpdateMyHeight.kt -------------------------------------------------------------------------------- /application/src/main/kotlin/com/studentcenter/weave/application/user/port/inbound/UpdateMyKakaoId.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/application/src/main/kotlin/com/studentcenter/weave/application/user/port/inbound/UpdateMyKakaoId.kt -------------------------------------------------------------------------------- /application/src/main/kotlin/com/studentcenter/weave/application/user/port/inbound/UpdateMyMbti.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/application/src/main/kotlin/com/studentcenter/weave/application/user/port/inbound/UpdateMyMbti.kt -------------------------------------------------------------------------------- /application/src/main/kotlin/com/studentcenter/weave/application/user/port/inbound/VerifyUniversityVerificationNumber.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/application/src/main/kotlin/com/studentcenter/weave/application/user/port/inbound/VerifyUniversityVerificationNumber.kt -------------------------------------------------------------------------------- /application/src/main/kotlin/com/studentcenter/weave/application/user/port/outbound/DeletedUserInfoRepository.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/application/src/main/kotlin/com/studentcenter/weave/application/user/port/outbound/DeletedUserInfoRepository.kt -------------------------------------------------------------------------------- /application/src/main/kotlin/com/studentcenter/weave/application/user/port/outbound/UserAuthInfoRepository.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/application/src/main/kotlin/com/studentcenter/weave/application/user/port/outbound/UserAuthInfoRepository.kt -------------------------------------------------------------------------------- /application/src/main/kotlin/com/studentcenter/weave/application/user/port/outbound/UserEventPort.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/application/src/main/kotlin/com/studentcenter/weave/application/user/port/outbound/UserEventPort.kt -------------------------------------------------------------------------------- /application/src/main/kotlin/com/studentcenter/weave/application/user/port/outbound/UserProfileImageUrlPort.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/application/src/main/kotlin/com/studentcenter/weave/application/user/port/outbound/UserProfileImageUrlPort.kt -------------------------------------------------------------------------------- /application/src/main/kotlin/com/studentcenter/weave/application/user/port/outbound/UserRefreshTokenRepository.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/application/src/main/kotlin/com/studentcenter/weave/application/user/port/outbound/UserRefreshTokenRepository.kt -------------------------------------------------------------------------------- /application/src/main/kotlin/com/studentcenter/weave/application/user/port/outbound/UserRepository.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/application/src/main/kotlin/com/studentcenter/weave/application/user/port/outbound/UserRepository.kt -------------------------------------------------------------------------------- /application/src/main/kotlin/com/studentcenter/weave/application/user/port/outbound/UserSilRepository.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/application/src/main/kotlin/com/studentcenter/weave/application/user/port/outbound/UserSilRepository.kt -------------------------------------------------------------------------------- /application/src/main/kotlin/com/studentcenter/weave/application/user/port/outbound/UserUniversityVerificationInfoRepository.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/application/src/main/kotlin/com/studentcenter/weave/application/user/port/outbound/UserUniversityVerificationInfoRepository.kt -------------------------------------------------------------------------------- /application/src/main/kotlin/com/studentcenter/weave/application/user/port/outbound/UserVerificationNumberRepository.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/application/src/main/kotlin/com/studentcenter/weave/application/user/port/outbound/UserVerificationNumberRepository.kt -------------------------------------------------------------------------------- /application/src/main/kotlin/com/studentcenter/weave/application/user/port/outbound/VerificationNumberMailer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/application/src/main/kotlin/com/studentcenter/weave/application/user/port/outbound/VerificationNumberMailer.kt -------------------------------------------------------------------------------- /application/src/main/kotlin/com/studentcenter/weave/application/user/service/application/CompleteProfileImageUploadService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/application/src/main/kotlin/com/studentcenter/weave/application/user/service/application/CompleteProfileImageUploadService.kt -------------------------------------------------------------------------------- /application/src/main/kotlin/com/studentcenter/weave/application/user/service/application/GetMyProfileService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/application/src/main/kotlin/com/studentcenter/weave/application/user/service/application/GetMyProfileService.kt -------------------------------------------------------------------------------- /application/src/main/kotlin/com/studentcenter/weave/application/user/service/application/GetProfileImageUploadUrlService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/application/src/main/kotlin/com/studentcenter/weave/application/user/service/application/GetProfileImageUploadUrlService.kt -------------------------------------------------------------------------------- /application/src/main/kotlin/com/studentcenter/weave/application/user/service/application/GetUserService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/application/src/main/kotlin/com/studentcenter/weave/application/user/service/application/GetUserService.kt -------------------------------------------------------------------------------- /application/src/main/kotlin/com/studentcenter/weave/application/user/service/application/LogoutService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/application/src/main/kotlin/com/studentcenter/weave/application/user/service/application/LogoutService.kt -------------------------------------------------------------------------------- /application/src/main/kotlin/com/studentcenter/weave/application/user/service/application/RefreshTokenService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/application/src/main/kotlin/com/studentcenter/weave/application/user/service/application/RefreshTokenService.kt -------------------------------------------------------------------------------- /application/src/main/kotlin/com/studentcenter/weave/application/user/service/application/RegisterUserService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/application/src/main/kotlin/com/studentcenter/weave/application/user/service/application/RegisterUserService.kt -------------------------------------------------------------------------------- /application/src/main/kotlin/com/studentcenter/weave/application/user/service/application/SendVerificationEmailService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/application/src/main/kotlin/com/studentcenter/weave/application/user/service/application/SendVerificationEmailService.kt -------------------------------------------------------------------------------- /application/src/main/kotlin/com/studentcenter/weave/application/user/service/application/SocialLoginService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/application/src/main/kotlin/com/studentcenter/weave/application/user/service/application/SocialLoginService.kt -------------------------------------------------------------------------------- /application/src/main/kotlin/com/studentcenter/weave/application/user/service/application/UnregisterUserService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/application/src/main/kotlin/com/studentcenter/weave/application/user/service/application/UnregisterUserService.kt -------------------------------------------------------------------------------- /application/src/main/kotlin/com/studentcenter/weave/application/user/service/application/UpdateMyAnimalTypeService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/application/src/main/kotlin/com/studentcenter/weave/application/user/service/application/UpdateMyAnimalTypeService.kt -------------------------------------------------------------------------------- /application/src/main/kotlin/com/studentcenter/weave/application/user/service/application/UpdateMyHeightService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/application/src/main/kotlin/com/studentcenter/weave/application/user/service/application/UpdateMyHeightService.kt -------------------------------------------------------------------------------- /application/src/main/kotlin/com/studentcenter/weave/application/user/service/application/UpdateMyKakaoIdService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/application/src/main/kotlin/com/studentcenter/weave/application/user/service/application/UpdateMyKakaoIdService.kt -------------------------------------------------------------------------------- /application/src/main/kotlin/com/studentcenter/weave/application/user/service/application/UpdateMyMbtiService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/application/src/main/kotlin/com/studentcenter/weave/application/user/service/application/UpdateMyMbtiService.kt -------------------------------------------------------------------------------- /application/src/main/kotlin/com/studentcenter/weave/application/user/service/application/VerifyUniversityVerificationNumberService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/application/src/main/kotlin/com/studentcenter/weave/application/user/service/application/VerifyUniversityVerificationNumberService.kt -------------------------------------------------------------------------------- /application/src/main/kotlin/com/studentcenter/weave/application/user/service/domain/DeletedUserInfoService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/application/src/main/kotlin/com/studentcenter/weave/application/user/service/domain/DeletedUserInfoService.kt -------------------------------------------------------------------------------- /application/src/main/kotlin/com/studentcenter/weave/application/user/service/domain/UserAuthInfoDomainService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/application/src/main/kotlin/com/studentcenter/weave/application/user/service/domain/UserAuthInfoDomainService.kt -------------------------------------------------------------------------------- /application/src/main/kotlin/com/studentcenter/weave/application/user/service/domain/UserDomainService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/application/src/main/kotlin/com/studentcenter/weave/application/user/service/domain/UserDomainService.kt -------------------------------------------------------------------------------- /application/src/main/kotlin/com/studentcenter/weave/application/user/service/domain/UserSilDomainService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/application/src/main/kotlin/com/studentcenter/weave/application/user/service/domain/UserSilDomainService.kt -------------------------------------------------------------------------------- /application/src/main/kotlin/com/studentcenter/weave/application/user/service/domain/UserUniversityVerificationInfoDomainService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/application/src/main/kotlin/com/studentcenter/weave/application/user/service/domain/UserUniversityVerificationInfoDomainService.kt -------------------------------------------------------------------------------- /application/src/main/kotlin/com/studentcenter/weave/application/user/service/domain/impl/DeletedUserInfoServiceImpl.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/application/src/main/kotlin/com/studentcenter/weave/application/user/service/domain/impl/DeletedUserInfoServiceImpl.kt -------------------------------------------------------------------------------- /application/src/main/kotlin/com/studentcenter/weave/application/user/service/domain/impl/UserAuthInfoDomainServiceImpl.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/application/src/main/kotlin/com/studentcenter/weave/application/user/service/domain/impl/UserAuthInfoDomainServiceImpl.kt -------------------------------------------------------------------------------- /application/src/main/kotlin/com/studentcenter/weave/application/user/service/domain/impl/UserDomainServiceImpl.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/application/src/main/kotlin/com/studentcenter/weave/application/user/service/domain/impl/UserDomainServiceImpl.kt -------------------------------------------------------------------------------- /application/src/main/kotlin/com/studentcenter/weave/application/user/service/domain/impl/UserSilDomainServiceImpl.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/application/src/main/kotlin/com/studentcenter/weave/application/user/service/domain/impl/UserSilDomainServiceImpl.kt -------------------------------------------------------------------------------- /application/src/main/kotlin/com/studentcenter/weave/application/user/service/domain/impl/UserUniversityVerificationInfoDomainServiceImpl.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/application/src/main/kotlin/com/studentcenter/weave/application/user/service/domain/impl/UserUniversityVerificationInfoDomainServiceImpl.kt -------------------------------------------------------------------------------- /application/src/main/kotlin/com/studentcenter/weave/application/user/service/util/UserTokenService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/application/src/main/kotlin/com/studentcenter/weave/application/user/service/util/UserTokenService.kt -------------------------------------------------------------------------------- /application/src/main/kotlin/com/studentcenter/weave/application/user/service/util/UserTokenType.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/application/src/main/kotlin/com/studentcenter/weave/application/user/service/util/UserTokenType.kt -------------------------------------------------------------------------------- /application/src/main/kotlin/com/studentcenter/weave/application/user/service/util/impl/UserTokenServiceImpl.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/application/src/main/kotlin/com/studentcenter/weave/application/user/service/util/impl/UserTokenServiceImpl.kt -------------------------------------------------------------------------------- /application/src/main/kotlin/com/studentcenter/weave/application/user/service/util/impl/strategy/AppleOpenIdTokenResolveStrategy.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/application/src/main/kotlin/com/studentcenter/weave/application/user/service/util/impl/strategy/AppleOpenIdTokenResolveStrategy.kt -------------------------------------------------------------------------------- /application/src/main/kotlin/com/studentcenter/weave/application/user/service/util/impl/strategy/KakaoOpenIdTokenResolveStrategy.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/application/src/main/kotlin/com/studentcenter/weave/application/user/service/util/impl/strategy/KakaoOpenIdTokenResolveStrategy.kt -------------------------------------------------------------------------------- /application/src/main/kotlin/com/studentcenter/weave/application/user/service/util/impl/strategy/OpenIdTokenResolveStrategy.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/application/src/main/kotlin/com/studentcenter/weave/application/user/service/util/impl/strategy/OpenIdTokenResolveStrategy.kt -------------------------------------------------------------------------------- /application/src/main/kotlin/com/studentcenter/weave/application/user/service/util/impl/strategy/OpenIdTokenResolveStrategyFactory.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/application/src/main/kotlin/com/studentcenter/weave/application/user/service/util/impl/strategy/OpenIdTokenResolveStrategyFactory.kt -------------------------------------------------------------------------------- /application/src/main/kotlin/com/studentcenter/weave/application/user/service/util/impl/strategy/OpenIdTokenResolveStrategyFactoryImpl.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/application/src/main/kotlin/com/studentcenter/weave/application/user/service/util/impl/strategy/OpenIdTokenResolveStrategyFactoryImpl.kt -------------------------------------------------------------------------------- /application/src/main/kotlin/com/studentcenter/weave/application/user/vo/UserAuthentication.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/application/src/main/kotlin/com/studentcenter/weave/application/user/vo/UserAuthentication.kt -------------------------------------------------------------------------------- /application/src/main/kotlin/com/studentcenter/weave/application/user/vo/UserTokenClaims.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/application/src/main/kotlin/com/studentcenter/weave/application/user/vo/UserTokenClaims.kt -------------------------------------------------------------------------------- /application/src/main/kotlin/com/studentcenter/weave/application/user/vo/UserUniversityVerificationNumber.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/application/src/main/kotlin/com/studentcenter/weave/application/user/vo/UserUniversityVerificationNumber.kt -------------------------------------------------------------------------------- /application/src/main/resources/application-application.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/application/src/main/resources/application-application.yaml -------------------------------------------------------------------------------- /application/src/test/kotlin/com/studentcenter/weave/application/chat/service/CreateChatRoomServiceTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/application/src/test/kotlin/com/studentcenter/weave/application/chat/service/CreateChatRoomServiceTest.kt -------------------------------------------------------------------------------- /application/src/test/kotlin/com/studentcenter/weave/application/chat/service/GetChatRoomServiceTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/application/src/test/kotlin/com/studentcenter/weave/application/chat/service/GetChatRoomServiceTest.kt -------------------------------------------------------------------------------- /application/src/test/kotlin/com/studentcenter/weave/application/chat/service/SendChatMessageServiceTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/application/src/test/kotlin/com/studentcenter/weave/application/chat/service/SendChatMessageServiceTest.kt -------------------------------------------------------------------------------- /application/src/test/kotlin/com/studentcenter/weave/application/meeting/service/application/CancelEndedPendingMeetingServiceTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/application/src/test/kotlin/com/studentcenter/weave/application/meeting/service/application/CancelEndedPendingMeetingServiceTest.kt -------------------------------------------------------------------------------- /application/src/test/kotlin/com/studentcenter/weave/application/meeting/service/application/FindMyRequestMeetingByReceivingTeamIdServiceTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/application/src/test/kotlin/com/studentcenter/weave/application/meeting/service/application/FindMyRequestMeetingByReceivingTeamIdServiceTest.kt -------------------------------------------------------------------------------- /application/src/test/kotlin/com/studentcenter/weave/application/meeting/service/application/GetAllOtherTeamMemberInfoServiceTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/application/src/test/kotlin/com/studentcenter/weave/application/meeting/service/application/GetAllOtherTeamMemberInfoServiceTest.kt -------------------------------------------------------------------------------- /application/src/test/kotlin/com/studentcenter/weave/application/meeting/service/application/GetMeetingAttendancesServiceTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/application/src/test/kotlin/com/studentcenter/weave/application/meeting/service/application/GetMeetingAttendancesServiceTest.kt -------------------------------------------------------------------------------- /application/src/test/kotlin/com/studentcenter/weave/application/meeting/service/application/MeetingRequestServiceTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/application/src/test/kotlin/com/studentcenter/weave/application/meeting/service/application/MeetingRequestServiceTest.kt -------------------------------------------------------------------------------- /application/src/test/kotlin/com/studentcenter/weave/application/meeting/service/application/NotifyMeetingEventServiceTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/application/src/test/kotlin/com/studentcenter/weave/application/meeting/service/application/NotifyMeetingEventServiceTest.kt -------------------------------------------------------------------------------- /application/src/test/kotlin/com/studentcenter/weave/application/meeting/service/application/ScrollPendingMeetingServiceTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/application/src/test/kotlin/com/studentcenter/weave/application/meeting/service/application/ScrollPendingMeetingServiceTest.kt -------------------------------------------------------------------------------- /application/src/test/kotlin/com/studentcenter/weave/application/meeting/service/application/ScrollPreparedMeetingServiceTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/application/src/test/kotlin/com/studentcenter/weave/application/meeting/service/application/ScrollPreparedMeetingServiceTest.kt -------------------------------------------------------------------------------- /application/src/test/kotlin/com/studentcenter/weave/application/meetingTeam/service/application/CreateInvitationLinkTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/application/src/test/kotlin/com/studentcenter/weave/application/meetingTeam/service/application/CreateInvitationLinkTest.kt -------------------------------------------------------------------------------- /application/src/test/kotlin/com/studentcenter/weave/application/meetingTeam/service/application/CreateMeetingTeamTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/application/src/test/kotlin/com/studentcenter/weave/application/meetingTeam/service/application/CreateMeetingTeamTest.kt -------------------------------------------------------------------------------- /application/src/test/kotlin/com/studentcenter/weave/application/meetingTeam/service/application/DeleteMeetingTeamTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/application/src/test/kotlin/com/studentcenter/weave/application/meetingTeam/service/application/DeleteMeetingTeamTest.kt -------------------------------------------------------------------------------- /application/src/test/kotlin/com/studentcenter/weave/application/meetingTeam/service/application/EditMeetingTeamTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/application/src/test/kotlin/com/studentcenter/weave/application/meetingTeam/service/application/EditMeetingTeamTest.kt -------------------------------------------------------------------------------- /application/src/test/kotlin/com/studentcenter/weave/application/meetingTeam/service/application/GetMeetingTeamByInvitationTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/application/src/test/kotlin/com/studentcenter/weave/application/meetingTeam/service/application/GetMeetingTeamByInvitationTest.kt -------------------------------------------------------------------------------- /application/src/test/kotlin/com/studentcenter/weave/application/meetingTeam/service/application/GetMeetingTeamDetailTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/application/src/test/kotlin/com/studentcenter/weave/application/meetingTeam/service/application/GetMeetingTeamDetailTest.kt -------------------------------------------------------------------------------- /application/src/test/kotlin/com/studentcenter/weave/application/meetingTeam/service/application/JoinMeetingTeamServiceTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/application/src/test/kotlin/com/studentcenter/weave/application/meetingTeam/service/application/JoinMeetingTeamServiceTest.kt -------------------------------------------------------------------------------- /application/src/test/kotlin/com/studentcenter/weave/application/meetingTeam/service/application/LeaveMeetingTeamTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/application/src/test/kotlin/com/studentcenter/weave/application/meetingTeam/service/application/LeaveMeetingTeamTest.kt -------------------------------------------------------------------------------- /application/src/test/kotlin/com/studentcenter/weave/application/meetingTeam/service/util/impl/MeetingTeamInvitationServiceImplTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/application/src/test/kotlin/com/studentcenter/weave/application/meetingTeam/service/util/impl/MeetingTeamInvitationServiceImplTest.kt -------------------------------------------------------------------------------- /application/src/test/kotlin/com/studentcenter/weave/application/suggestion/service/CreateSuggestionServiceTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/application/src/test/kotlin/com/studentcenter/weave/application/suggestion/service/CreateSuggestionServiceTest.kt -------------------------------------------------------------------------------- /application/src/test/kotlin/com/studentcenter/weave/application/university/service/application/GetMajorTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/application/src/test/kotlin/com/studentcenter/weave/application/university/service/application/GetMajorTest.kt -------------------------------------------------------------------------------- /application/src/test/kotlin/com/studentcenter/weave/application/university/service/application/GetUniversityTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/application/src/test/kotlin/com/studentcenter/weave/application/university/service/application/GetUniversityTest.kt -------------------------------------------------------------------------------- /application/src/test/kotlin/com/studentcenter/weave/application/user/service/application/CompleteProfileImageUploadTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/application/src/test/kotlin/com/studentcenter/weave/application/user/service/application/CompleteProfileImageUploadTest.kt -------------------------------------------------------------------------------- /application/src/test/kotlin/com/studentcenter/weave/application/user/service/application/GetMyProfileTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/application/src/test/kotlin/com/studentcenter/weave/application/user/service/application/GetMyProfileTest.kt -------------------------------------------------------------------------------- /application/src/test/kotlin/com/studentcenter/weave/application/user/service/application/GetProfileImageUploadUrlTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/application/src/test/kotlin/com/studentcenter/weave/application/user/service/application/GetProfileImageUploadUrlTest.kt -------------------------------------------------------------------------------- /application/src/test/kotlin/com/studentcenter/weave/application/user/service/application/LogoutTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/application/src/test/kotlin/com/studentcenter/weave/application/user/service/application/LogoutTest.kt -------------------------------------------------------------------------------- /application/src/test/kotlin/com/studentcenter/weave/application/user/service/application/RefreshTokenTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/application/src/test/kotlin/com/studentcenter/weave/application/user/service/application/RefreshTokenTest.kt -------------------------------------------------------------------------------- /application/src/test/kotlin/com/studentcenter/weave/application/user/service/application/RegisterUserTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/application/src/test/kotlin/com/studentcenter/weave/application/user/service/application/RegisterUserTest.kt -------------------------------------------------------------------------------- /application/src/test/kotlin/com/studentcenter/weave/application/user/service/application/SendVerificationEmailTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/application/src/test/kotlin/com/studentcenter/weave/application/user/service/application/SendVerificationEmailTest.kt -------------------------------------------------------------------------------- /application/src/test/kotlin/com/studentcenter/weave/application/user/service/application/SocialLoginTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/application/src/test/kotlin/com/studentcenter/weave/application/user/service/application/SocialLoginTest.kt -------------------------------------------------------------------------------- /application/src/test/kotlin/com/studentcenter/weave/application/user/service/application/UnregisterUserTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/application/src/test/kotlin/com/studentcenter/weave/application/user/service/application/UnregisterUserTest.kt -------------------------------------------------------------------------------- /application/src/test/kotlin/com/studentcenter/weave/application/user/service/application/UpdateMyAnimalTypeTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/application/src/test/kotlin/com/studentcenter/weave/application/user/service/application/UpdateMyAnimalTypeTest.kt -------------------------------------------------------------------------------- /application/src/test/kotlin/com/studentcenter/weave/application/user/service/application/UpdateMyHeightTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/application/src/test/kotlin/com/studentcenter/weave/application/user/service/application/UpdateMyHeightTest.kt -------------------------------------------------------------------------------- /application/src/test/kotlin/com/studentcenter/weave/application/user/service/application/UpdateMyKakaoIdTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/application/src/test/kotlin/com/studentcenter/weave/application/user/service/application/UpdateMyKakaoIdTest.kt -------------------------------------------------------------------------------- /application/src/test/kotlin/com/studentcenter/weave/application/user/service/application/UpdateMyMbtiTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/application/src/test/kotlin/com/studentcenter/weave/application/user/service/application/UpdateMyMbtiTest.kt -------------------------------------------------------------------------------- /application/src/test/kotlin/com/studentcenter/weave/application/user/service/application/VerifyUniversityVerificationNumberTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/application/src/test/kotlin/com/studentcenter/weave/application/user/service/application/VerifyUniversityVerificationNumberTest.kt -------------------------------------------------------------------------------- /application/src/test/kotlin/com/studentcenter/weave/application/user/service/domain/impl/UserAuthInfoDomainServiceImplTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/application/src/test/kotlin/com/studentcenter/weave/application/user/service/domain/impl/UserAuthInfoDomainServiceImplTest.kt -------------------------------------------------------------------------------- /application/src/test/kotlin/com/studentcenter/weave/application/user/service/domain/impl/UserDomainServiceImplTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/application/src/test/kotlin/com/studentcenter/weave/application/user/service/domain/impl/UserDomainServiceImplTest.kt -------------------------------------------------------------------------------- /application/src/test/kotlin/com/studentcenter/weave/application/user/service/util/impl/UserTokenServiceImplTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/application/src/test/kotlin/com/studentcenter/weave/application/user/service/util/impl/UserTokenServiceImplTest.kt -------------------------------------------------------------------------------- /application/src/test/kotlin/com/studentcenter/weave/application/user/service/util/impl/strategy/AppleOpenIdTokenResolveStrategyTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/application/src/test/kotlin/com/studentcenter/weave/application/user/service/util/impl/strategy/AppleOpenIdTokenResolveStrategyTest.kt -------------------------------------------------------------------------------- /application/src/test/kotlin/com/studentcenter/weave/application/user/service/util/impl/strategy/KakaoOpenIdTokenResolveStrategyTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/application/src/test/kotlin/com/studentcenter/weave/application/user/service/util/impl/strategy/KakaoOpenIdTokenResolveStrategyTest.kt -------------------------------------------------------------------------------- /application/src/testFixtures/kotlin/com/studentcenter/weave/application/chat/outbound/ChatMessagePublisherSpy.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/application/src/testFixtures/kotlin/com/studentcenter/weave/application/chat/outbound/ChatMessagePublisherSpy.kt -------------------------------------------------------------------------------- /application/src/testFixtures/kotlin/com/studentcenter/weave/application/chat/outbound/ChatMessageRepositorySpy.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/application/src/testFixtures/kotlin/com/studentcenter/weave/application/chat/outbound/ChatMessageRepositorySpy.kt -------------------------------------------------------------------------------- /application/src/testFixtures/kotlin/com/studentcenter/weave/application/chat/outbound/ChatRoomRepositorySpy.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/application/src/testFixtures/kotlin/com/studentcenter/weave/application/chat/outbound/ChatRoomRepositorySpy.kt -------------------------------------------------------------------------------- /application/src/testFixtures/kotlin/com/studentcenter/weave/application/common/properties/JwtTokenPropertiesFixtureFactory.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/application/src/testFixtures/kotlin/com/studentcenter/weave/application/common/properties/JwtTokenPropertiesFixtureFactory.kt -------------------------------------------------------------------------------- /application/src/testFixtures/kotlin/com/studentcenter/weave/application/common/properties/MeetingTeamInvitationPropertiesFixtureFactory.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/application/src/testFixtures/kotlin/com/studentcenter/weave/application/common/properties/MeetingTeamInvitationPropertiesFixtureFactory.kt -------------------------------------------------------------------------------- /application/src/testFixtures/kotlin/com/studentcenter/weave/application/common/properties/OpenIdPropertiesFixtureFactory.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/application/src/testFixtures/kotlin/com/studentcenter/weave/application/common/properties/OpenIdPropertiesFixtureFactory.kt -------------------------------------------------------------------------------- /application/src/testFixtures/kotlin/com/studentcenter/weave/application/meeting/outbound/MeetingAttendanceRepositorySpy.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/application/src/testFixtures/kotlin/com/studentcenter/weave/application/meeting/outbound/MeetingAttendanceRepositorySpy.kt -------------------------------------------------------------------------------- /application/src/testFixtures/kotlin/com/studentcenter/weave/application/meeting/outbound/MeetingEventMessagePortSpy.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/application/src/testFixtures/kotlin/com/studentcenter/weave/application/meeting/outbound/MeetingEventMessagePortSpy.kt -------------------------------------------------------------------------------- /application/src/testFixtures/kotlin/com/studentcenter/weave/application/meeting/outbound/MeetingRepositorySpy.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/application/src/testFixtures/kotlin/com/studentcenter/weave/application/meeting/outbound/MeetingRepositorySpy.kt -------------------------------------------------------------------------------- /application/src/testFixtures/kotlin/com/studentcenter/weave/application/meetingTeam/outbound/MeetingTeamInvitationRepositorySpy.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/application/src/testFixtures/kotlin/com/studentcenter/weave/application/meetingTeam/outbound/MeetingTeamInvitationRepositorySpy.kt -------------------------------------------------------------------------------- /application/src/testFixtures/kotlin/com/studentcenter/weave/application/meetingTeam/outbound/MeetingTeamMemberSummaryRepositorySpy.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/application/src/testFixtures/kotlin/com/studentcenter/weave/application/meetingTeam/outbound/MeetingTeamMemberSummaryRepositorySpy.kt -------------------------------------------------------------------------------- /application/src/testFixtures/kotlin/com/studentcenter/weave/application/meetingTeam/outbound/MeetingTeamRepositorySpy.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/application/src/testFixtures/kotlin/com/studentcenter/weave/application/meetingTeam/outbound/MeetingTeamRepositorySpy.kt -------------------------------------------------------------------------------- /application/src/testFixtures/kotlin/com/studentcenter/weave/application/meetingTeam/vo/MeetingTeamInfoCreator.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/application/src/testFixtures/kotlin/com/studentcenter/weave/application/meetingTeam/vo/MeetingTeamInfoCreator.kt -------------------------------------------------------------------------------- /application/src/testFixtures/kotlin/com/studentcenter/weave/application/meetingTeam/vo/MeetingTeamInvitationFixtureFactory.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/application/src/testFixtures/kotlin/com/studentcenter/weave/application/meetingTeam/vo/MeetingTeamInvitationFixtureFactory.kt -------------------------------------------------------------------------------- /application/src/testFixtures/kotlin/com/studentcenter/weave/application/suggestion/outbound/SuggestionRepositorySpy.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/application/src/testFixtures/kotlin/com/studentcenter/weave/application/suggestion/outbound/SuggestionRepositorySpy.kt -------------------------------------------------------------------------------- /application/src/testFixtures/kotlin/com/studentcenter/weave/application/university/port/outbound/MajorRepositorySpy.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/application/src/testFixtures/kotlin/com/studentcenter/weave/application/university/port/outbound/MajorRepositorySpy.kt -------------------------------------------------------------------------------- /application/src/testFixtures/kotlin/com/studentcenter/weave/application/university/port/outbound/UniversityRepositorySpy.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/application/src/testFixtures/kotlin/com/studentcenter/weave/application/university/port/outbound/UniversityRepositorySpy.kt -------------------------------------------------------------------------------- /application/src/testFixtures/kotlin/com/studentcenter/weave/application/user/port/inbound/GetUserStub.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/application/src/testFixtures/kotlin/com/studentcenter/weave/application/user/port/inbound/GetUserStub.kt -------------------------------------------------------------------------------- /application/src/testFixtures/kotlin/com/studentcenter/weave/application/user/port/outbound/DeletedUserInfoRepositorySpy.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/application/src/testFixtures/kotlin/com/studentcenter/weave/application/user/port/outbound/DeletedUserInfoRepositorySpy.kt -------------------------------------------------------------------------------- /application/src/testFixtures/kotlin/com/studentcenter/weave/application/user/port/outbound/UserAuthInfoRepositorySpy.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/application/src/testFixtures/kotlin/com/studentcenter/weave/application/user/port/outbound/UserAuthInfoRepositorySpy.kt -------------------------------------------------------------------------------- /application/src/testFixtures/kotlin/com/studentcenter/weave/application/user/port/outbound/UserEventPortStub.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/application/src/testFixtures/kotlin/com/studentcenter/weave/application/user/port/outbound/UserEventPortStub.kt -------------------------------------------------------------------------------- /application/src/testFixtures/kotlin/com/studentcenter/weave/application/user/port/outbound/UserProfileImageUrlPortStub.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/application/src/testFixtures/kotlin/com/studentcenter/weave/application/user/port/outbound/UserProfileImageUrlPortStub.kt -------------------------------------------------------------------------------- /application/src/testFixtures/kotlin/com/studentcenter/weave/application/user/port/outbound/UserRefreshTokenRepositorySpy.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/application/src/testFixtures/kotlin/com/studentcenter/weave/application/user/port/outbound/UserRefreshTokenRepositorySpy.kt -------------------------------------------------------------------------------- /application/src/testFixtures/kotlin/com/studentcenter/weave/application/user/port/outbound/UserRepositorySpy.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/application/src/testFixtures/kotlin/com/studentcenter/weave/application/user/port/outbound/UserRepositorySpy.kt -------------------------------------------------------------------------------- /application/src/testFixtures/kotlin/com/studentcenter/weave/application/user/port/outbound/UserSilRepositorySpy.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/application/src/testFixtures/kotlin/com/studentcenter/weave/application/user/port/outbound/UserSilRepositorySpy.kt -------------------------------------------------------------------------------- /application/src/testFixtures/kotlin/com/studentcenter/weave/application/user/port/outbound/UserUniversityVerificationInfoRepositorySpy.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/application/src/testFixtures/kotlin/com/studentcenter/weave/application/user/port/outbound/UserUniversityVerificationInfoRepositorySpy.kt -------------------------------------------------------------------------------- /application/src/testFixtures/kotlin/com/studentcenter/weave/application/user/port/outbound/UserVerificationNumberRepositorySpy.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/application/src/testFixtures/kotlin/com/studentcenter/weave/application/user/port/outbound/UserVerificationNumberRepositorySpy.kt -------------------------------------------------------------------------------- /application/src/testFixtures/kotlin/com/studentcenter/weave/application/user/service/util/impl/strategy/OpenIdTokenResolveStrategyFactoryStub.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/application/src/testFixtures/kotlin/com/studentcenter/weave/application/user/service/util/impl/strategy/OpenIdTokenResolveStrategyFactoryStub.kt -------------------------------------------------------------------------------- /application/src/testFixtures/kotlin/com/studentcenter/weave/application/user/vo/UserAuthenticationFixtureFactory.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/application/src/testFixtures/kotlin/com/studentcenter/weave/application/user/vo/UserAuthenticationFixtureFactory.kt -------------------------------------------------------------------------------- /application/src/testFixtures/kotlin/com/studentcenter/weave/application/user/vo/UserTokenClaimsFixtureFactory.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/application/src/testFixtures/kotlin/com/studentcenter/weave/application/user/vo/UserTokenClaimsFixtureFactory.kt -------------------------------------------------------------------------------- /bootstrap/http/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/bootstrap/http/build.gradle.kts -------------------------------------------------------------------------------- /bootstrap/http/compose-dev.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/bootstrap/http/compose-dev.yaml -------------------------------------------------------------------------------- /bootstrap/http/compose-local.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/bootstrap/http/compose-local.yaml -------------------------------------------------------------------------------- /bootstrap/http/src/main/kotlin/com/studentcenter/weave/bootstrap/WeaveHttpApplication.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/bootstrap/http/src/main/kotlin/com/studentcenter/weave/bootstrap/WeaveHttpApplication.kt -------------------------------------------------------------------------------- /bootstrap/http/src/main/kotlin/com/studentcenter/weave/bootstrap/auth/api/AuthApi.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/bootstrap/http/src/main/kotlin/com/studentcenter/weave/bootstrap/auth/api/AuthApi.kt -------------------------------------------------------------------------------- /bootstrap/http/src/main/kotlin/com/studentcenter/weave/bootstrap/auth/controller/AuthRestController.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/bootstrap/http/src/main/kotlin/com/studentcenter/weave/bootstrap/auth/controller/AuthRestController.kt -------------------------------------------------------------------------------- /bootstrap/http/src/main/kotlin/com/studentcenter/weave/bootstrap/auth/dto/RefreshLoginTokenResponse.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/bootstrap/http/src/main/kotlin/com/studentcenter/weave/bootstrap/auth/dto/RefreshLoginTokenResponse.kt -------------------------------------------------------------------------------- /bootstrap/http/src/main/kotlin/com/studentcenter/weave/bootstrap/auth/dto/RefreshTokenRequest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/bootstrap/http/src/main/kotlin/com/studentcenter/weave/bootstrap/auth/dto/RefreshTokenRequest.kt -------------------------------------------------------------------------------- /bootstrap/http/src/main/kotlin/com/studentcenter/weave/bootstrap/auth/dto/SocialLoginRequest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/bootstrap/http/src/main/kotlin/com/studentcenter/weave/bootstrap/auth/dto/SocialLoginRequest.kt -------------------------------------------------------------------------------- /bootstrap/http/src/main/kotlin/com/studentcenter/weave/bootstrap/auth/dto/SocialLoginResponse.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/bootstrap/http/src/main/kotlin/com/studentcenter/weave/bootstrap/auth/dto/SocialLoginResponse.kt -------------------------------------------------------------------------------- /bootstrap/http/src/main/kotlin/com/studentcenter/weave/bootstrap/chat/api/ChatMessageApi.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/bootstrap/http/src/main/kotlin/com/studentcenter/weave/bootstrap/chat/api/ChatMessageApi.kt -------------------------------------------------------------------------------- /bootstrap/http/src/main/kotlin/com/studentcenter/weave/bootstrap/chat/api/ChatRoomApi.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/bootstrap/http/src/main/kotlin/com/studentcenter/weave/bootstrap/chat/api/ChatRoomApi.kt -------------------------------------------------------------------------------- /bootstrap/http/src/main/kotlin/com/studentcenter/weave/bootstrap/chat/controller/ChatMessageHandler.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/bootstrap/http/src/main/kotlin/com/studentcenter/weave/bootstrap/chat/controller/ChatMessageHandler.kt -------------------------------------------------------------------------------- /bootstrap/http/src/main/kotlin/com/studentcenter/weave/bootstrap/chat/controller/ChatMessageRestController.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/bootstrap/http/src/main/kotlin/com/studentcenter/weave/bootstrap/chat/controller/ChatMessageRestController.kt -------------------------------------------------------------------------------- /bootstrap/http/src/main/kotlin/com/studentcenter/weave/bootstrap/chat/controller/ChatRoomRestController.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/bootstrap/http/src/main/kotlin/com/studentcenter/weave/bootstrap/chat/controller/ChatRoomRestController.kt -------------------------------------------------------------------------------- /bootstrap/http/src/main/kotlin/com/studentcenter/weave/bootstrap/chat/controller/ChatWebSocketController.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/bootstrap/http/src/main/kotlin/com/studentcenter/weave/bootstrap/chat/controller/ChatWebSocketController.kt -------------------------------------------------------------------------------- /bootstrap/http/src/main/kotlin/com/studentcenter/weave/bootstrap/chat/dto/ChatRoomDetailResponse.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/bootstrap/http/src/main/kotlin/com/studentcenter/weave/bootstrap/chat/dto/ChatRoomDetailResponse.kt -------------------------------------------------------------------------------- /bootstrap/http/src/main/kotlin/com/studentcenter/weave/bootstrap/chat/dto/GetChatMessagesRequest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/bootstrap/http/src/main/kotlin/com/studentcenter/weave/bootstrap/chat/dto/GetChatMessagesRequest.kt -------------------------------------------------------------------------------- /bootstrap/http/src/main/kotlin/com/studentcenter/weave/bootstrap/chat/dto/GetChatMessagesResponse.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/bootstrap/http/src/main/kotlin/com/studentcenter/weave/bootstrap/chat/dto/GetChatMessagesResponse.kt -------------------------------------------------------------------------------- /bootstrap/http/src/main/kotlin/com/studentcenter/weave/bootstrap/chat/dto/SendChatMessageRequest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/bootstrap/http/src/main/kotlin/com/studentcenter/weave/bootstrap/chat/dto/SendChatMessageRequest.kt -------------------------------------------------------------------------------- /bootstrap/http/src/main/kotlin/com/studentcenter/weave/bootstrap/common/config/OpenApiConfig.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/bootstrap/http/src/main/kotlin/com/studentcenter/weave/bootstrap/common/config/OpenApiConfig.kt -------------------------------------------------------------------------------- /bootstrap/http/src/main/kotlin/com/studentcenter/weave/bootstrap/common/config/WebMvcConfig.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/bootstrap/http/src/main/kotlin/com/studentcenter/weave/bootstrap/common/config/WebMvcConfig.kt -------------------------------------------------------------------------------- /bootstrap/http/src/main/kotlin/com/studentcenter/weave/bootstrap/common/config/WebSocketConfig.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/bootstrap/http/src/main/kotlin/com/studentcenter/weave/bootstrap/common/config/WebSocketConfig.kt -------------------------------------------------------------------------------- /bootstrap/http/src/main/kotlin/com/studentcenter/weave/bootstrap/common/exception/ApiException.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/bootstrap/http/src/main/kotlin/com/studentcenter/weave/bootstrap/common/exception/ApiException.kt -------------------------------------------------------------------------------- /bootstrap/http/src/main/kotlin/com/studentcenter/weave/bootstrap/common/exception/CustomExceptionHandler.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/bootstrap/http/src/main/kotlin/com/studentcenter/weave/bootstrap/common/exception/CustomExceptionHandler.kt -------------------------------------------------------------------------------- /bootstrap/http/src/main/kotlin/com/studentcenter/weave/bootstrap/common/exception/ErrorResponse.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/bootstrap/http/src/main/kotlin/com/studentcenter/weave/bootstrap/common/exception/ErrorResponse.kt -------------------------------------------------------------------------------- /bootstrap/http/src/main/kotlin/com/studentcenter/weave/bootstrap/common/exception/UnknownExceptionHandler.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/bootstrap/http/src/main/kotlin/com/studentcenter/weave/bootstrap/common/exception/UnknownExceptionHandler.kt -------------------------------------------------------------------------------- /bootstrap/http/src/main/kotlin/com/studentcenter/weave/bootstrap/common/exception/WebSocketExceptionHandler.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/bootstrap/http/src/main/kotlin/com/studentcenter/weave/bootstrap/common/exception/WebSocketExceptionHandler.kt -------------------------------------------------------------------------------- /bootstrap/http/src/main/kotlin/com/studentcenter/weave/bootstrap/common/security/annotation/RegisterTokenClaim.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/bootstrap/http/src/main/kotlin/com/studentcenter/weave/bootstrap/common/security/annotation/RegisterTokenClaim.kt -------------------------------------------------------------------------------- /bootstrap/http/src/main/kotlin/com/studentcenter/weave/bootstrap/common/security/annotation/Secured.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/bootstrap/http/src/main/kotlin/com/studentcenter/weave/bootstrap/common/security/annotation/Secured.kt -------------------------------------------------------------------------------- /bootstrap/http/src/main/kotlin/com/studentcenter/weave/bootstrap/common/security/filter/ExceptionHandlingFilter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/bootstrap/http/src/main/kotlin/com/studentcenter/weave/bootstrap/common/security/filter/ExceptionHandlingFilter.kt -------------------------------------------------------------------------------- /bootstrap/http/src/main/kotlin/com/studentcenter/weave/bootstrap/common/security/filter/JwtAuthenticationFilter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/bootstrap/http/src/main/kotlin/com/studentcenter/weave/bootstrap/common/security/filter/JwtAuthenticationFilter.kt -------------------------------------------------------------------------------- /bootstrap/http/src/main/kotlin/com/studentcenter/weave/bootstrap/common/security/interceptor/AuthorizationInterceptor.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/bootstrap/http/src/main/kotlin/com/studentcenter/weave/bootstrap/common/security/interceptor/AuthorizationInterceptor.kt -------------------------------------------------------------------------------- /bootstrap/http/src/main/kotlin/com/studentcenter/weave/bootstrap/common/security/interceptor/StompAuthInterceptor.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/bootstrap/http/src/main/kotlin/com/studentcenter/weave/bootstrap/common/security/interceptor/StompAuthInterceptor.kt -------------------------------------------------------------------------------- /bootstrap/http/src/main/kotlin/com/studentcenter/weave/bootstrap/common/security/interceptor/StompExceptionHandler.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/bootstrap/http/src/main/kotlin/com/studentcenter/weave/bootstrap/common/security/interceptor/StompExceptionHandler.kt -------------------------------------------------------------------------------- /bootstrap/http/src/main/kotlin/com/studentcenter/weave/bootstrap/common/security/resolver/RegisterTokenArgumentResolver.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/bootstrap/http/src/main/kotlin/com/studentcenter/weave/bootstrap/common/security/resolver/RegisterTokenArgumentResolver.kt -------------------------------------------------------------------------------- /bootstrap/http/src/main/kotlin/com/studentcenter/weave/bootstrap/meeting/api/MeetingApi.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/bootstrap/http/src/main/kotlin/com/studentcenter/weave/bootstrap/meeting/api/MeetingApi.kt -------------------------------------------------------------------------------- /bootstrap/http/src/main/kotlin/com/studentcenter/weave/bootstrap/meeting/controller/MeetingEventHandler.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/bootstrap/http/src/main/kotlin/com/studentcenter/weave/bootstrap/meeting/controller/MeetingEventHandler.kt -------------------------------------------------------------------------------- /bootstrap/http/src/main/kotlin/com/studentcenter/weave/bootstrap/meeting/controller/MeetingRestController.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/bootstrap/http/src/main/kotlin/com/studentcenter/weave/bootstrap/meeting/controller/MeetingRestController.kt -------------------------------------------------------------------------------- /bootstrap/http/src/main/kotlin/com/studentcenter/weave/bootstrap/meeting/dto/KakaoIdResponse.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/bootstrap/http/src/main/kotlin/com/studentcenter/weave/bootstrap/meeting/dto/KakaoIdResponse.kt -------------------------------------------------------------------------------- /bootstrap/http/src/main/kotlin/com/studentcenter/weave/bootstrap/meeting/dto/MeetingAttendancesResponse.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/bootstrap/http/src/main/kotlin/com/studentcenter/weave/bootstrap/meeting/dto/MeetingAttendancesResponse.kt -------------------------------------------------------------------------------- /bootstrap/http/src/main/kotlin/com/studentcenter/weave/bootstrap/meeting/dto/MeetingRequestRequest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/bootstrap/http/src/main/kotlin/com/studentcenter/weave/bootstrap/meeting/dto/MeetingRequestRequest.kt -------------------------------------------------------------------------------- /bootstrap/http/src/main/kotlin/com/studentcenter/weave/bootstrap/meeting/dto/MeetingResponse.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/bootstrap/http/src/main/kotlin/com/studentcenter/weave/bootstrap/meeting/dto/MeetingResponse.kt -------------------------------------------------------------------------------- /bootstrap/http/src/main/kotlin/com/studentcenter/weave/bootstrap/meeting/dto/MeetingTeamDto.kt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bootstrap/http/src/main/kotlin/com/studentcenter/weave/bootstrap/meeting/dto/PendingMeetingScrollRequest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/bootstrap/http/src/main/kotlin/com/studentcenter/weave/bootstrap/meeting/dto/PendingMeetingScrollRequest.kt -------------------------------------------------------------------------------- /bootstrap/http/src/main/kotlin/com/studentcenter/weave/bootstrap/meeting/dto/PendingMeetingScrollResponse.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/bootstrap/http/src/main/kotlin/com/studentcenter/weave/bootstrap/meeting/dto/PendingMeetingScrollResponse.kt -------------------------------------------------------------------------------- /bootstrap/http/src/main/kotlin/com/studentcenter/weave/bootstrap/meeting/dto/PreparedMeetingScrollRequest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/bootstrap/http/src/main/kotlin/com/studentcenter/weave/bootstrap/meeting/dto/PreparedMeetingScrollRequest.kt -------------------------------------------------------------------------------- /bootstrap/http/src/main/kotlin/com/studentcenter/weave/bootstrap/meeting/dto/PreparedMeetingScrollResponse.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/bootstrap/http/src/main/kotlin/com/studentcenter/weave/bootstrap/meeting/dto/PreparedMeetingScrollResponse.kt -------------------------------------------------------------------------------- /bootstrap/http/src/main/kotlin/com/studentcenter/weave/bootstrap/meetingTeam/api/MeetingTeamApi.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/bootstrap/http/src/main/kotlin/com/studentcenter/weave/bootstrap/meetingTeam/api/MeetingTeamApi.kt -------------------------------------------------------------------------------- /bootstrap/http/src/main/kotlin/com/studentcenter/weave/bootstrap/meetingTeam/controller/MeetingTeamRestController.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/bootstrap/http/src/main/kotlin/com/studentcenter/weave/bootstrap/meetingTeam/controller/MeetingTeamRestController.kt -------------------------------------------------------------------------------- /bootstrap/http/src/main/kotlin/com/studentcenter/weave/bootstrap/meetingTeam/dto/MeetingTeamCreateInvitationResponse.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/bootstrap/http/src/main/kotlin/com/studentcenter/weave/bootstrap/meetingTeam/dto/MeetingTeamCreateInvitationResponse.kt -------------------------------------------------------------------------------- /bootstrap/http/src/main/kotlin/com/studentcenter/weave/bootstrap/meetingTeam/dto/MeetingTeamCreateRequest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/bootstrap/http/src/main/kotlin/com/studentcenter/weave/bootstrap/meetingTeam/dto/MeetingTeamCreateRequest.kt -------------------------------------------------------------------------------- /bootstrap/http/src/main/kotlin/com/studentcenter/weave/bootstrap/meetingTeam/dto/MeetingTeamEditRequest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/bootstrap/http/src/main/kotlin/com/studentcenter/weave/bootstrap/meetingTeam/dto/MeetingTeamEditRequest.kt -------------------------------------------------------------------------------- /bootstrap/http/src/main/kotlin/com/studentcenter/weave/bootstrap/meetingTeam/dto/MeetingTeamGetByInvitationCodeResponse.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/bootstrap/http/src/main/kotlin/com/studentcenter/weave/bootstrap/meetingTeam/dto/MeetingTeamGetByInvitationCodeResponse.kt -------------------------------------------------------------------------------- /bootstrap/http/src/main/kotlin/com/studentcenter/weave/bootstrap/meetingTeam/dto/MeetingTeamGetDetailResponse.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/bootstrap/http/src/main/kotlin/com/studentcenter/weave/bootstrap/meetingTeam/dto/MeetingTeamGetDetailResponse.kt -------------------------------------------------------------------------------- /bootstrap/http/src/main/kotlin/com/studentcenter/weave/bootstrap/meetingTeam/dto/MeetingTeamGetListRequest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/bootstrap/http/src/main/kotlin/com/studentcenter/weave/bootstrap/meetingTeam/dto/MeetingTeamGetListRequest.kt -------------------------------------------------------------------------------- /bootstrap/http/src/main/kotlin/com/studentcenter/weave/bootstrap/meetingTeam/dto/MeetingTeamGetListResponse.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/bootstrap/http/src/main/kotlin/com/studentcenter/weave/bootstrap/meetingTeam/dto/MeetingTeamGetListResponse.kt -------------------------------------------------------------------------------- /bootstrap/http/src/main/kotlin/com/studentcenter/weave/bootstrap/meetingTeam/dto/MeetingTeamGetLocationsResponse.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/bootstrap/http/src/main/kotlin/com/studentcenter/weave/bootstrap/meetingTeam/dto/MeetingTeamGetLocationsResponse.kt -------------------------------------------------------------------------------- /bootstrap/http/src/main/kotlin/com/studentcenter/weave/bootstrap/meetingTeam/dto/MeetingTeamGetMyRequest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/bootstrap/http/src/main/kotlin/com/studentcenter/weave/bootstrap/meetingTeam/dto/MeetingTeamGetMyRequest.kt -------------------------------------------------------------------------------- /bootstrap/http/src/main/kotlin/com/studentcenter/weave/bootstrap/meetingTeam/dto/MeetingTeamGetMyResponse.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/bootstrap/http/src/main/kotlin/com/studentcenter/weave/bootstrap/meetingTeam/dto/MeetingTeamGetMyResponse.kt -------------------------------------------------------------------------------- /bootstrap/http/src/main/kotlin/com/studentcenter/weave/bootstrap/meetingTeam/dto/MeetingTeamMemberDetailResponse.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/bootstrap/http/src/main/kotlin/com/studentcenter/weave/bootstrap/meetingTeam/dto/MeetingTeamMemberDetailResponse.kt -------------------------------------------------------------------------------- /bootstrap/http/src/main/kotlin/com/studentcenter/weave/bootstrap/scheduler/component/PendingMeetingExpireScheduler.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/bootstrap/http/src/main/kotlin/com/studentcenter/weave/bootstrap/scheduler/component/PendingMeetingExpireScheduler.kt -------------------------------------------------------------------------------- /bootstrap/http/src/main/kotlin/com/studentcenter/weave/bootstrap/scheduler/config/SchedulerConfig.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/bootstrap/http/src/main/kotlin/com/studentcenter/weave/bootstrap/scheduler/config/SchedulerConfig.kt -------------------------------------------------------------------------------- /bootstrap/http/src/main/kotlin/com/studentcenter/weave/bootstrap/suggestion/api/SuggestionApi.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/bootstrap/http/src/main/kotlin/com/studentcenter/weave/bootstrap/suggestion/api/SuggestionApi.kt -------------------------------------------------------------------------------- /bootstrap/http/src/main/kotlin/com/studentcenter/weave/bootstrap/suggestion/controller/SuggestionRestController.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/bootstrap/http/src/main/kotlin/com/studentcenter/weave/bootstrap/suggestion/controller/SuggestionRestController.kt -------------------------------------------------------------------------------- /bootstrap/http/src/main/kotlin/com/studentcenter/weave/bootstrap/suggestion/dto/SuggestionCreateRequest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/bootstrap/http/src/main/kotlin/com/studentcenter/weave/bootstrap/suggestion/dto/SuggestionCreateRequest.kt -------------------------------------------------------------------------------- /bootstrap/http/src/main/kotlin/com/studentcenter/weave/bootstrap/university/api/UnivApi.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/bootstrap/http/src/main/kotlin/com/studentcenter/weave/bootstrap/university/api/UnivApi.kt -------------------------------------------------------------------------------- /bootstrap/http/src/main/kotlin/com/studentcenter/weave/bootstrap/university/controller/UnivRestController.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/bootstrap/http/src/main/kotlin/com/studentcenter/weave/bootstrap/university/controller/UnivRestController.kt -------------------------------------------------------------------------------- /bootstrap/http/src/main/kotlin/com/studentcenter/weave/bootstrap/university/dto/MajorsResponse.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/bootstrap/http/src/main/kotlin/com/studentcenter/weave/bootstrap/university/dto/MajorsResponse.kt -------------------------------------------------------------------------------- /bootstrap/http/src/main/kotlin/com/studentcenter/weave/bootstrap/university/dto/UniversitiesResponse.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/bootstrap/http/src/main/kotlin/com/studentcenter/weave/bootstrap/university/dto/UniversitiesResponse.kt -------------------------------------------------------------------------------- /bootstrap/http/src/main/kotlin/com/studentcenter/weave/bootstrap/university/dto/UniversityResponse.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/bootstrap/http/src/main/kotlin/com/studentcenter/weave/bootstrap/university/dto/UniversityResponse.kt -------------------------------------------------------------------------------- /bootstrap/http/src/main/kotlin/com/studentcenter/weave/bootstrap/user/api/UserApi.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/bootstrap/http/src/main/kotlin/com/studentcenter/weave/bootstrap/user/api/UserApi.kt -------------------------------------------------------------------------------- /bootstrap/http/src/main/kotlin/com/studentcenter/weave/bootstrap/user/controller/UserRestController.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/bootstrap/http/src/main/kotlin/com/studentcenter/weave/bootstrap/user/controller/UserRestController.kt -------------------------------------------------------------------------------- /bootstrap/http/src/main/kotlin/com/studentcenter/weave/bootstrap/user/dto/UserCompleteProfileImageUploadRequest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/bootstrap/http/src/main/kotlin/com/studentcenter/weave/bootstrap/user/dto/UserCompleteProfileImageUploadRequest.kt -------------------------------------------------------------------------------- /bootstrap/http/src/main/kotlin/com/studentcenter/weave/bootstrap/user/dto/UserGetAvailableAnimalTypesResponse.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/bootstrap/http/src/main/kotlin/com/studentcenter/weave/bootstrap/user/dto/UserGetAvailableAnimalTypesResponse.kt -------------------------------------------------------------------------------- /bootstrap/http/src/main/kotlin/com/studentcenter/weave/bootstrap/user/dto/UserGetMyProfileResponse.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/bootstrap/http/src/main/kotlin/com/studentcenter/weave/bootstrap/user/dto/UserGetMyProfileResponse.kt -------------------------------------------------------------------------------- /bootstrap/http/src/main/kotlin/com/studentcenter/weave/bootstrap/user/dto/UserGetProfileImageUploadUrlResponse.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/bootstrap/http/src/main/kotlin/com/studentcenter/weave/bootstrap/user/dto/UserGetProfileImageUploadUrlResponse.kt -------------------------------------------------------------------------------- /bootstrap/http/src/main/kotlin/com/studentcenter/weave/bootstrap/user/dto/UserModifyMyMbtiRequest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/bootstrap/http/src/main/kotlin/com/studentcenter/weave/bootstrap/user/dto/UserModifyMyMbtiRequest.kt -------------------------------------------------------------------------------- /bootstrap/http/src/main/kotlin/com/studentcenter/weave/bootstrap/user/dto/UserRegisterRequest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/bootstrap/http/src/main/kotlin/com/studentcenter/weave/bootstrap/user/dto/UserRegisterRequest.kt -------------------------------------------------------------------------------- /bootstrap/http/src/main/kotlin/com/studentcenter/weave/bootstrap/user/dto/UserRegisterResponse.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/bootstrap/http/src/main/kotlin/com/studentcenter/weave/bootstrap/user/dto/UserRegisterResponse.kt -------------------------------------------------------------------------------- /bootstrap/http/src/main/kotlin/com/studentcenter/weave/bootstrap/user/dto/UserSetMyAnimalTypeRequest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/bootstrap/http/src/main/kotlin/com/studentcenter/weave/bootstrap/user/dto/UserSetMyAnimalTypeRequest.kt -------------------------------------------------------------------------------- /bootstrap/http/src/main/kotlin/com/studentcenter/weave/bootstrap/user/dto/UserSetMyHeightRequest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/bootstrap/http/src/main/kotlin/com/studentcenter/weave/bootstrap/user/dto/UserSetMyHeightRequest.kt -------------------------------------------------------------------------------- /bootstrap/http/src/main/kotlin/com/studentcenter/weave/bootstrap/user/dto/UserSetMyKakaoIdRequest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/bootstrap/http/src/main/kotlin/com/studentcenter/weave/bootstrap/user/dto/UserSetMyKakaoIdRequest.kt -------------------------------------------------------------------------------- /bootstrap/http/src/main/kotlin/com/studentcenter/weave/bootstrap/user/dto/UserUnivVerificationSendRequest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/bootstrap/http/src/main/kotlin/com/studentcenter/weave/bootstrap/user/dto/UserUnivVerificationSendRequest.kt -------------------------------------------------------------------------------- /bootstrap/http/src/main/kotlin/com/studentcenter/weave/bootstrap/user/dto/UserUnivVerificationVerifyRequest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/bootstrap/http/src/main/kotlin/com/studentcenter/weave/bootstrap/user/dto/UserUnivVerificationVerifyRequest.kt -------------------------------------------------------------------------------- /bootstrap/http/src/main/resources/application.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/bootstrap/http/src/main/resources/application.yaml -------------------------------------------------------------------------------- /bootstrap/http/src/main/resources/static/.well-known/apple-app-site-association: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/bootstrap/http/src/main/resources/static/.well-known/apple-app-site-association -------------------------------------------------------------------------------- /bootstrap/http/src/main/resources/static/.well-known/assetlinks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/bootstrap/http/src/main/resources/static/.well-known/assetlinks.json -------------------------------------------------------------------------------- /bootstrap/http/src/test/kotlin/com/studentcenter/weave/bootstrap/chat/controller/ChatMessageHandlerTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/bootstrap/http/src/test/kotlin/com/studentcenter/weave/bootstrap/chat/controller/ChatMessageHandlerTest.kt -------------------------------------------------------------------------------- /bootstrap/http/src/test/kotlin/com/studentcenter/weave/bootstrap/common/security/filter/JwtAuthenticationFilterTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/bootstrap/http/src/test/kotlin/com/studentcenter/weave/bootstrap/common/security/filter/JwtAuthenticationFilterTest.kt -------------------------------------------------------------------------------- /bootstrap/http/src/test/kotlin/com/studentcenter/weave/bootstrap/common/security/interceptor/AuthorizationInterceptorTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/bootstrap/http/src/test/kotlin/com/studentcenter/weave/bootstrap/common/security/interceptor/AuthorizationInterceptorTest.kt -------------------------------------------------------------------------------- /bootstrap/http/src/test/kotlin/com/studentcenter/weave/bootstrap/integration/CreateMeetingAttendanceIntegrationTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/bootstrap/http/src/test/kotlin/com/studentcenter/weave/bootstrap/integration/CreateMeetingAttendanceIntegrationTest.kt -------------------------------------------------------------------------------- /bootstrap/http/src/test/kotlin/com/studentcenter/weave/bootstrap/integration/IntegrationTestDescribeSpec.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/bootstrap/http/src/test/kotlin/com/studentcenter/weave/bootstrap/integration/IntegrationTestDescribeSpec.kt -------------------------------------------------------------------------------- /bootstrap/http/src/test/kotlin/com/studentcenter/weave/bootstrap/integration/UserSilDomainServiceIntegrationTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/bootstrap/http/src/test/kotlin/com/studentcenter/weave/bootstrap/integration/UserSilDomainServiceIntegrationTest.kt -------------------------------------------------------------------------------- /bootstrap/http/src/test/resources/compose-test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/bootstrap/http/src/test/resources/compose-test.yaml -------------------------------------------------------------------------------- /bootstrap/http/src/testFixtures/kotlin/com/studentcenter/weave/bootstrap/controller/AuthorizationInterceptorTestController.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/bootstrap/http/src/testFixtures/kotlin/com/studentcenter/weave/bootstrap/controller/AuthorizationInterceptorTestController.kt -------------------------------------------------------------------------------- /bootstrap/http/src/testFixtures/kotlin/com/studentcenter/weave/bootstrap/controller/JwtAuthenticationFilterTestController.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/bootstrap/http/src/testFixtures/kotlin/com/studentcenter/weave/bootstrap/controller/JwtAuthenticationFilterTestController.kt -------------------------------------------------------------------------------- /docs/weave-infra.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/docs/weave-infra.jpg -------------------------------------------------------------------------------- /domain/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/domain/build.gradle.kts -------------------------------------------------------------------------------- /domain/src/main/kotlin/com/studentcenter/weave/domain/chat/entity/ChatMember.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/domain/src/main/kotlin/com/studentcenter/weave/domain/chat/entity/ChatMember.kt -------------------------------------------------------------------------------- /domain/src/main/kotlin/com/studentcenter/weave/domain/chat/entity/ChatMessage.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/domain/src/main/kotlin/com/studentcenter/weave/domain/chat/entity/ChatMessage.kt -------------------------------------------------------------------------------- /domain/src/main/kotlin/com/studentcenter/weave/domain/chat/entity/ChatRoom.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/domain/src/main/kotlin/com/studentcenter/weave/domain/chat/entity/ChatRoom.kt -------------------------------------------------------------------------------- /domain/src/main/kotlin/com/studentcenter/weave/domain/common/AggregateRoot.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/domain/src/main/kotlin/com/studentcenter/weave/domain/common/AggregateRoot.kt -------------------------------------------------------------------------------- /domain/src/main/kotlin/com/studentcenter/weave/domain/common/DomainEntity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/domain/src/main/kotlin/com/studentcenter/weave/domain/common/DomainEntity.kt -------------------------------------------------------------------------------- /domain/src/main/kotlin/com/studentcenter/weave/domain/common/DomainEvent.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/domain/src/main/kotlin/com/studentcenter/weave/domain/common/DomainEvent.kt -------------------------------------------------------------------------------- /domain/src/main/kotlin/com/studentcenter/weave/domain/meeting/entity/Meeting.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/domain/src/main/kotlin/com/studentcenter/weave/domain/meeting/entity/Meeting.kt -------------------------------------------------------------------------------- /domain/src/main/kotlin/com/studentcenter/weave/domain/meeting/entity/MeetingAttendance.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/domain/src/main/kotlin/com/studentcenter/weave/domain/meeting/entity/MeetingAttendance.kt -------------------------------------------------------------------------------- /domain/src/main/kotlin/com/studentcenter/weave/domain/meeting/enums/MeetingStatus.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/domain/src/main/kotlin/com/studentcenter/weave/domain/meeting/enums/MeetingStatus.kt -------------------------------------------------------------------------------- /domain/src/main/kotlin/com/studentcenter/weave/domain/meeting/enums/TeamType.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/domain/src/main/kotlin/com/studentcenter/weave/domain/meeting/enums/TeamType.kt -------------------------------------------------------------------------------- /domain/src/main/kotlin/com/studentcenter/weave/domain/meeting/event/MeetingCompletedEvent.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/domain/src/main/kotlin/com/studentcenter/weave/domain/meeting/event/MeetingCompletedEvent.kt -------------------------------------------------------------------------------- /domain/src/main/kotlin/com/studentcenter/weave/domain/meeting/exception/MeetingException.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/domain/src/main/kotlin/com/studentcenter/weave/domain/meeting/exception/MeetingException.kt -------------------------------------------------------------------------------- /domain/src/main/kotlin/com/studentcenter/weave/domain/meetingTeam/entity/MeetingMember.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/domain/src/main/kotlin/com/studentcenter/weave/domain/meetingTeam/entity/MeetingMember.kt -------------------------------------------------------------------------------- /domain/src/main/kotlin/com/studentcenter/weave/domain/meetingTeam/entity/MeetingTeam.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/domain/src/main/kotlin/com/studentcenter/weave/domain/meetingTeam/entity/MeetingTeam.kt -------------------------------------------------------------------------------- /domain/src/main/kotlin/com/studentcenter/weave/domain/meetingTeam/entity/MeetingTeamMemberSummary.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/domain/src/main/kotlin/com/studentcenter/weave/domain/meetingTeam/entity/MeetingTeamMemberSummary.kt -------------------------------------------------------------------------------- /domain/src/main/kotlin/com/studentcenter/weave/domain/meetingTeam/enums/Location.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/domain/src/main/kotlin/com/studentcenter/weave/domain/meetingTeam/enums/Location.kt -------------------------------------------------------------------------------- /domain/src/main/kotlin/com/studentcenter/weave/domain/meetingTeam/enums/MeetingMemberRole.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/domain/src/main/kotlin/com/studentcenter/weave/domain/meetingTeam/enums/MeetingMemberRole.kt -------------------------------------------------------------------------------- /domain/src/main/kotlin/com/studentcenter/weave/domain/meetingTeam/enums/MeetingTeamStatus.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/domain/src/main/kotlin/com/studentcenter/weave/domain/meetingTeam/enums/MeetingTeamStatus.kt -------------------------------------------------------------------------------- /domain/src/main/kotlin/com/studentcenter/weave/domain/meetingTeam/exception/MeetingTeamException.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/domain/src/main/kotlin/com/studentcenter/weave/domain/meetingTeam/exception/MeetingTeamException.kt -------------------------------------------------------------------------------- /domain/src/main/kotlin/com/studentcenter/weave/domain/meetingTeam/vo/TeamIntroduce.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/domain/src/main/kotlin/com/studentcenter/weave/domain/meetingTeam/vo/TeamIntroduce.kt -------------------------------------------------------------------------------- /domain/src/main/kotlin/com/studentcenter/weave/domain/suggestion/entity/Suggestion.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/domain/src/main/kotlin/com/studentcenter/weave/domain/suggestion/entity/Suggestion.kt -------------------------------------------------------------------------------- /domain/src/main/kotlin/com/studentcenter/weave/domain/university/entity/Major.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/domain/src/main/kotlin/com/studentcenter/weave/domain/university/entity/Major.kt -------------------------------------------------------------------------------- /domain/src/main/kotlin/com/studentcenter/weave/domain/university/entity/University.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/domain/src/main/kotlin/com/studentcenter/weave/domain/university/entity/University.kt -------------------------------------------------------------------------------- /domain/src/main/kotlin/com/studentcenter/weave/domain/university/vo/MajorName.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/domain/src/main/kotlin/com/studentcenter/weave/domain/university/vo/MajorName.kt -------------------------------------------------------------------------------- /domain/src/main/kotlin/com/studentcenter/weave/domain/university/vo/UniversityName.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/domain/src/main/kotlin/com/studentcenter/weave/domain/university/vo/UniversityName.kt -------------------------------------------------------------------------------- /domain/src/main/kotlin/com/studentcenter/weave/domain/user/entity/DeletedUserInfo.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/domain/src/main/kotlin/com/studentcenter/weave/domain/user/entity/DeletedUserInfo.kt -------------------------------------------------------------------------------- /domain/src/main/kotlin/com/studentcenter/weave/domain/user/entity/User.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/domain/src/main/kotlin/com/studentcenter/weave/domain/user/entity/User.kt -------------------------------------------------------------------------------- /domain/src/main/kotlin/com/studentcenter/weave/domain/user/entity/UserAuthInfo.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/domain/src/main/kotlin/com/studentcenter/weave/domain/user/entity/UserAuthInfo.kt -------------------------------------------------------------------------------- /domain/src/main/kotlin/com/studentcenter/weave/domain/user/entity/UserProfileImage.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/domain/src/main/kotlin/com/studentcenter/weave/domain/user/entity/UserProfileImage.kt -------------------------------------------------------------------------------- /domain/src/main/kotlin/com/studentcenter/weave/domain/user/entity/UserSil.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/domain/src/main/kotlin/com/studentcenter/weave/domain/user/entity/UserSil.kt -------------------------------------------------------------------------------- /domain/src/main/kotlin/com/studentcenter/weave/domain/user/entity/UserUniversityVerificationInfo.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/domain/src/main/kotlin/com/studentcenter/weave/domain/user/entity/UserUniversityVerificationInfo.kt -------------------------------------------------------------------------------- /domain/src/main/kotlin/com/studentcenter/weave/domain/user/enums/AnimalType.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/domain/src/main/kotlin/com/studentcenter/weave/domain/user/enums/AnimalType.kt -------------------------------------------------------------------------------- /domain/src/main/kotlin/com/studentcenter/weave/domain/user/enums/Gender.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/domain/src/main/kotlin/com/studentcenter/weave/domain/user/enums/Gender.kt -------------------------------------------------------------------------------- /domain/src/main/kotlin/com/studentcenter/weave/domain/user/enums/SocialLoginProvider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/domain/src/main/kotlin/com/studentcenter/weave/domain/user/enums/SocialLoginProvider.kt -------------------------------------------------------------------------------- /domain/src/main/kotlin/com/studentcenter/weave/domain/user/exception/UserException.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/domain/src/main/kotlin/com/studentcenter/weave/domain/user/exception/UserException.kt -------------------------------------------------------------------------------- /domain/src/main/kotlin/com/studentcenter/weave/domain/user/vo/BirthYear.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/domain/src/main/kotlin/com/studentcenter/weave/domain/user/vo/BirthYear.kt -------------------------------------------------------------------------------- /domain/src/main/kotlin/com/studentcenter/weave/domain/user/vo/Height.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/domain/src/main/kotlin/com/studentcenter/weave/domain/user/vo/Height.kt -------------------------------------------------------------------------------- /domain/src/main/kotlin/com/studentcenter/weave/domain/user/vo/KakaoId.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/domain/src/main/kotlin/com/studentcenter/weave/domain/user/vo/KakaoId.kt -------------------------------------------------------------------------------- /domain/src/main/kotlin/com/studentcenter/weave/domain/user/vo/Mbti.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/domain/src/main/kotlin/com/studentcenter/weave/domain/user/vo/Mbti.kt -------------------------------------------------------------------------------- /domain/src/main/kotlin/com/studentcenter/weave/domain/user/vo/MbtiAffinityScore.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/domain/src/main/kotlin/com/studentcenter/weave/domain/user/vo/MbtiAffinityScore.kt -------------------------------------------------------------------------------- /domain/src/main/kotlin/com/studentcenter/weave/domain/user/vo/Nickname.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/domain/src/main/kotlin/com/studentcenter/weave/domain/user/vo/Nickname.kt -------------------------------------------------------------------------------- /domain/src/test/kotlin/com/studentcenter/weave/domain/chat/entity/ChatRoomTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/domain/src/test/kotlin/com/studentcenter/weave/domain/chat/entity/ChatRoomTest.kt -------------------------------------------------------------------------------- /domain/src/test/kotlin/com/studentcenter/weave/domain/meeting/entity/MeetingTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/domain/src/test/kotlin/com/studentcenter/weave/domain/meeting/entity/MeetingTest.kt -------------------------------------------------------------------------------- /domain/src/test/kotlin/com/studentcenter/weave/domain/meetingTeam/entity/MeetingTeamMemberSummaryTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/domain/src/test/kotlin/com/studentcenter/weave/domain/meetingTeam/entity/MeetingTeamMemberSummaryTest.kt -------------------------------------------------------------------------------- /domain/src/test/kotlin/com/studentcenter/weave/domain/meetingTeam/entity/MeetingTeamTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/domain/src/test/kotlin/com/studentcenter/weave/domain/meetingTeam/entity/MeetingTeamTest.kt -------------------------------------------------------------------------------- /domain/src/test/kotlin/com/studentcenter/weave/domain/meetingTeam/vo/TeamIntroduceTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/domain/src/test/kotlin/com/studentcenter/weave/domain/meetingTeam/vo/TeamIntroduceTest.kt -------------------------------------------------------------------------------- /domain/src/test/kotlin/com/studentcenter/weave/domain/university/entity/MajorTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/domain/src/test/kotlin/com/studentcenter/weave/domain/university/entity/MajorTest.kt -------------------------------------------------------------------------------- /domain/src/test/kotlin/com/studentcenter/weave/domain/university/entity/UniversityTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/domain/src/test/kotlin/com/studentcenter/weave/domain/university/entity/UniversityTest.kt -------------------------------------------------------------------------------- /domain/src/test/kotlin/com/studentcenter/weave/domain/university/vo/MajorNameTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/domain/src/test/kotlin/com/studentcenter/weave/domain/university/vo/MajorNameTest.kt -------------------------------------------------------------------------------- /domain/src/test/kotlin/com/studentcenter/weave/domain/university/vo/UniversityNameTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/domain/src/test/kotlin/com/studentcenter/weave/domain/university/vo/UniversityNameTest.kt -------------------------------------------------------------------------------- /domain/src/test/kotlin/com/studentcenter/weave/domain/user/entity/DeletedUserInfoTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/domain/src/test/kotlin/com/studentcenter/weave/domain/user/entity/DeletedUserInfoTest.kt -------------------------------------------------------------------------------- /domain/src/test/kotlin/com/studentcenter/weave/domain/user/entity/UserAuthInfoTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/domain/src/test/kotlin/com/studentcenter/weave/domain/user/entity/UserAuthInfoTest.kt -------------------------------------------------------------------------------- /domain/src/test/kotlin/com/studentcenter/weave/domain/user/entity/UserProfileImageTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/domain/src/test/kotlin/com/studentcenter/weave/domain/user/entity/UserProfileImageTest.kt -------------------------------------------------------------------------------- /domain/src/test/kotlin/com/studentcenter/weave/domain/user/entity/UserSilTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/domain/src/test/kotlin/com/studentcenter/weave/domain/user/entity/UserSilTest.kt -------------------------------------------------------------------------------- /domain/src/test/kotlin/com/studentcenter/weave/domain/user/entity/UserTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/domain/src/test/kotlin/com/studentcenter/weave/domain/user/entity/UserTest.kt -------------------------------------------------------------------------------- /domain/src/test/kotlin/com/studentcenter/weave/domain/user/vo/BirthYearTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/domain/src/test/kotlin/com/studentcenter/weave/domain/user/vo/BirthYearTest.kt -------------------------------------------------------------------------------- /domain/src/test/kotlin/com/studentcenter/weave/domain/user/vo/HeightTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/domain/src/test/kotlin/com/studentcenter/weave/domain/user/vo/HeightTest.kt -------------------------------------------------------------------------------- /domain/src/test/kotlin/com/studentcenter/weave/domain/user/vo/MbtiTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/domain/src/test/kotlin/com/studentcenter/weave/domain/user/vo/MbtiTest.kt -------------------------------------------------------------------------------- /domain/src/test/kotlin/com/studentcenter/weave/domain/user/vo/NicknameTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/domain/src/test/kotlin/com/studentcenter/weave/domain/user/vo/NicknameTest.kt -------------------------------------------------------------------------------- /domain/src/testFixtures/kotlin/com/studentcenter/weave/domain/chat/entity/ChatMemberFixtureFactory.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/domain/src/testFixtures/kotlin/com/studentcenter/weave/domain/chat/entity/ChatMemberFixtureFactory.kt -------------------------------------------------------------------------------- /domain/src/testFixtures/kotlin/com/studentcenter/weave/domain/chat/entity/ChatMessageFixtureFactory.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/domain/src/testFixtures/kotlin/com/studentcenter/weave/domain/chat/entity/ChatMessageFixtureFactory.kt -------------------------------------------------------------------------------- /domain/src/testFixtures/kotlin/com/studentcenter/weave/domain/chat/entity/ChatRoomFixtureFactory.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/domain/src/testFixtures/kotlin/com/studentcenter/weave/domain/chat/entity/ChatRoomFixtureFactory.kt -------------------------------------------------------------------------------- /domain/src/testFixtures/kotlin/com/studentcenter/weave/domain/meeting/entity/MeetingAttendanceFixtureFactory.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/domain/src/testFixtures/kotlin/com/studentcenter/weave/domain/meeting/entity/MeetingAttendanceFixtureFactory.kt -------------------------------------------------------------------------------- /domain/src/testFixtures/kotlin/com/studentcenter/weave/domain/meeting/entity/MeetingFixtureFactory.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/domain/src/testFixtures/kotlin/com/studentcenter/weave/domain/meeting/entity/MeetingFixtureFactory.kt -------------------------------------------------------------------------------- /domain/src/testFixtures/kotlin/com/studentcenter/weave/domain/meetingTeam/entity/MeetingTeamFixtureFactory.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/domain/src/testFixtures/kotlin/com/studentcenter/weave/domain/meetingTeam/entity/MeetingTeamFixtureFactory.kt -------------------------------------------------------------------------------- /domain/src/testFixtures/kotlin/com/studentcenter/weave/domain/meetingTeam/entity/MeetingTeamMemberSummaryFixtureFactory.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/domain/src/testFixtures/kotlin/com/studentcenter/weave/domain/meetingTeam/entity/MeetingTeamMemberSummaryFixtureFactory.kt -------------------------------------------------------------------------------- /domain/src/testFixtures/kotlin/com/studentcenter/weave/domain/university/entity/MajorFixtureFactory.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/domain/src/testFixtures/kotlin/com/studentcenter/weave/domain/university/entity/MajorFixtureFactory.kt -------------------------------------------------------------------------------- /domain/src/testFixtures/kotlin/com/studentcenter/weave/domain/university/entity/UniversityFixtureFactory.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/domain/src/testFixtures/kotlin/com/studentcenter/weave/domain/university/entity/UniversityFixtureFactory.kt -------------------------------------------------------------------------------- /domain/src/testFixtures/kotlin/com/studentcenter/weave/domain/user/entity/DeletedUserInfoFixtureFactory.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/domain/src/testFixtures/kotlin/com/studentcenter/weave/domain/user/entity/DeletedUserInfoFixtureFactory.kt -------------------------------------------------------------------------------- /domain/src/testFixtures/kotlin/com/studentcenter/weave/domain/user/entity/UserAuthInfoFixtureFactory.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/domain/src/testFixtures/kotlin/com/studentcenter/weave/domain/user/entity/UserAuthInfoFixtureFactory.kt -------------------------------------------------------------------------------- /domain/src/testFixtures/kotlin/com/studentcenter/weave/domain/user/entity/UserFixtureFactory.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/domain/src/testFixtures/kotlin/com/studentcenter/weave/domain/user/entity/UserFixtureFactory.kt -------------------------------------------------------------------------------- /domain/src/testFixtures/kotlin/com/studentcenter/weave/domain/user/entity/UserUniversityVerificationInfoFixtureFactory.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/domain/src/testFixtures/kotlin/com/studentcenter/weave/domain/user/entity/UserUniversityVerificationInfoFixtureFactory.kt -------------------------------------------------------------------------------- /gradle/libs.versions.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/gradle/libs.versions.toml -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/gradlew.bat -------------------------------------------------------------------------------- /infrastructure/aws/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/infrastructure/aws/build.gradle.kts -------------------------------------------------------------------------------- /infrastructure/aws/src/main/kotlin/com/studentcenter/weave/infrastructure/aws/config/AwsConfig.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/infrastructure/aws/src/main/kotlin/com/studentcenter/weave/infrastructure/aws/config/AwsConfig.kt -------------------------------------------------------------------------------- /infrastructure/aws/src/main/kotlin/com/studentcenter/weave/infrastructure/aws/s3/adapter/UserProfileImageUrlS3Adapter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/infrastructure/aws/src/main/kotlin/com/studentcenter/weave/infrastructure/aws/s3/adapter/UserProfileImageUrlS3Adapter.kt -------------------------------------------------------------------------------- /infrastructure/aws/src/main/kotlin/com/studentcenter/weave/infrastructure/aws/s3/config/S3BucketProperties.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/infrastructure/aws/src/main/kotlin/com/studentcenter/weave/infrastructure/aws/s3/config/S3BucketProperties.kt -------------------------------------------------------------------------------- /infrastructure/aws/src/main/kotlin/com/studentcenter/weave/infrastructure/aws/s3/config/S3Config.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/infrastructure/aws/src/main/kotlin/com/studentcenter/weave/infrastructure/aws/s3/config/S3Config.kt -------------------------------------------------------------------------------- /infrastructure/aws/src/main/resources/application-aws.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/infrastructure/aws/src/main/resources/application-aws.yaml -------------------------------------------------------------------------------- /infrastructure/client/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/infrastructure/client/build.gradle.kts -------------------------------------------------------------------------------- /infrastructure/client/src/main/kotlin/com/studentcenter/weave/infrastructure/client/common/config/ClientConfig.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/infrastructure/client/src/main/kotlin/com/studentcenter/weave/infrastructure/client/common/config/ClientConfig.kt -------------------------------------------------------------------------------- /infrastructure/client/src/main/kotlin/com/studentcenter/weave/infrastructure/client/common/event/EventType.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/infrastructure/client/src/main/kotlin/com/studentcenter/weave/infrastructure/client/common/event/EventType.kt -------------------------------------------------------------------------------- /infrastructure/client/src/main/kotlin/com/studentcenter/weave/infrastructure/client/common/properties/ClientProperties.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/infrastructure/client/src/main/kotlin/com/studentcenter/weave/infrastructure/client/common/properties/ClientProperties.kt -------------------------------------------------------------------------------- /infrastructure/client/src/main/kotlin/com/studentcenter/weave/infrastructure/client/discord/common/vo/DiscordMessage.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/infrastructure/client/src/main/kotlin/com/studentcenter/weave/infrastructure/client/discord/common/vo/DiscordMessage.kt -------------------------------------------------------------------------------- /infrastructure/client/src/main/kotlin/com/studentcenter/weave/infrastructure/client/discord/meeting/adaptor/MeetingEventMessageDiscordAdaptor.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/infrastructure/client/src/main/kotlin/com/studentcenter/weave/infrastructure/client/discord/meeting/adaptor/MeetingEventMessageDiscordAdaptor.kt -------------------------------------------------------------------------------- /infrastructure/client/src/main/kotlin/com/studentcenter/weave/infrastructure/client/discord/user/adaptor/UserEventDiscordAdaptor.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/infrastructure/client/src/main/kotlin/com/studentcenter/weave/infrastructure/client/discord/user/adaptor/UserEventDiscordAdaptor.kt -------------------------------------------------------------------------------- /infrastructure/client/src/main/kotlin/com/studentcenter/weave/infrastructure/client/discord/util/DiscordClient.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/infrastructure/client/src/main/kotlin/com/studentcenter/weave/infrastructure/client/discord/util/DiscordClient.kt -------------------------------------------------------------------------------- /infrastructure/client/src/main/resources/application-client.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/infrastructure/client/src/main/resources/application-client.yaml -------------------------------------------------------------------------------- /infrastructure/mail/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/infrastructure/mail/build.gradle.kts -------------------------------------------------------------------------------- /infrastructure/mail/src/main/kotlin/com/studentcenter/weave/infrastructure/mail/adaptor/VerificationNumberGmailAdaptor.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/infrastructure/mail/src/main/kotlin/com/studentcenter/weave/infrastructure/mail/adaptor/VerificationNumberGmailAdaptor.kt -------------------------------------------------------------------------------- /infrastructure/mail/src/main/kotlin/com/studentcenter/weave/infrastructure/mail/common/config/MailConfig.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/infrastructure/mail/src/main/kotlin/com/studentcenter/weave/infrastructure/mail/common/config/MailConfig.kt -------------------------------------------------------------------------------- /infrastructure/mail/src/main/kotlin/com/studentcenter/weave/infrastructure/mail/common/exception/MailException.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/infrastructure/mail/src/main/kotlin/com/studentcenter/weave/infrastructure/mail/common/exception/MailException.kt -------------------------------------------------------------------------------- /infrastructure/mail/src/main/kotlin/com/studentcenter/weave/infrastructure/mail/ses/config/SesConfig.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/infrastructure/mail/src/main/kotlin/com/studentcenter/weave/infrastructure/mail/ses/config/SesConfig.kt -------------------------------------------------------------------------------- /infrastructure/mail/src/main/kotlin/com/studentcenter/weave/infrastructure/mail/ses/properties/SesProperties.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/infrastructure/mail/src/main/kotlin/com/studentcenter/weave/infrastructure/mail/ses/properties/SesProperties.kt -------------------------------------------------------------------------------- /infrastructure/mail/src/main/kotlin/com/studentcenter/weave/infrastructure/mail/ses/service/AmazonSimpleEmailService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/infrastructure/mail/src/main/kotlin/com/studentcenter/weave/infrastructure/mail/ses/service/AmazonSimpleEmailService.kt -------------------------------------------------------------------------------- /infrastructure/mail/src/main/resources/application-mail.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/infrastructure/mail/src/main/resources/application-mail.yaml -------------------------------------------------------------------------------- /infrastructure/mail/src/main/resources/mail-templates/email-verification-number.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/infrastructure/mail/src/main/resources/mail-templates/email-verification-number.html -------------------------------------------------------------------------------- /infrastructure/persistence/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/infrastructure/persistence/build.gradle.kts -------------------------------------------------------------------------------- /infrastructure/persistence/src/main/kotlin/com/studentcenter/weave/infrastructure/persistence/chat/adapter/ChatMessageJpaAdapter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/infrastructure/persistence/src/main/kotlin/com/studentcenter/weave/infrastructure/persistence/chat/adapter/ChatMessageJpaAdapter.kt -------------------------------------------------------------------------------- /infrastructure/persistence/src/main/kotlin/com/studentcenter/weave/infrastructure/persistence/chat/adapter/ChatRoomJpaAdapter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/infrastructure/persistence/src/main/kotlin/com/studentcenter/weave/infrastructure/persistence/chat/adapter/ChatRoomJpaAdapter.kt -------------------------------------------------------------------------------- /infrastructure/persistence/src/main/kotlin/com/studentcenter/weave/infrastructure/persistence/chat/enitty/ChatMessageJpaEntity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/infrastructure/persistence/src/main/kotlin/com/studentcenter/weave/infrastructure/persistence/chat/enitty/ChatMessageJpaEntity.kt -------------------------------------------------------------------------------- /infrastructure/persistence/src/main/kotlin/com/studentcenter/weave/infrastructure/persistence/chat/enitty/ChatRoomJpaEntity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/infrastructure/persistence/src/main/kotlin/com/studentcenter/weave/infrastructure/persistence/chat/enitty/ChatRoomJpaEntity.kt -------------------------------------------------------------------------------- /infrastructure/persistence/src/main/kotlin/com/studentcenter/weave/infrastructure/persistence/chat/repository/ChatMessageJpaRepository.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/infrastructure/persistence/src/main/kotlin/com/studentcenter/weave/infrastructure/persistence/chat/repository/ChatMessageJpaRepository.kt -------------------------------------------------------------------------------- /infrastructure/persistence/src/main/kotlin/com/studentcenter/weave/infrastructure/persistence/chat/repository/ChatRoomJpaRepository.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/infrastructure/persistence/src/main/kotlin/com/studentcenter/weave/infrastructure/persistence/chat/repository/ChatRoomJpaRepository.kt -------------------------------------------------------------------------------- /infrastructure/persistence/src/main/kotlin/com/studentcenter/weave/infrastructure/persistence/common/config/PersistenceConfig.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/infrastructure/persistence/src/main/kotlin/com/studentcenter/weave/infrastructure/persistence/common/config/PersistenceConfig.kt -------------------------------------------------------------------------------- /infrastructure/persistence/src/main/kotlin/com/studentcenter/weave/infrastructure/persistence/common/exception/PersistenceException.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/infrastructure/persistence/src/main/kotlin/com/studentcenter/weave/infrastructure/persistence/common/exception/PersistenceException.kt -------------------------------------------------------------------------------- /infrastructure/persistence/src/main/kotlin/com/studentcenter/weave/infrastructure/persistence/meeting/adapter/MeetingAttendanceJpaAdapter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/infrastructure/persistence/src/main/kotlin/com/studentcenter/weave/infrastructure/persistence/meeting/adapter/MeetingAttendanceJpaAdapter.kt -------------------------------------------------------------------------------- /infrastructure/persistence/src/main/kotlin/com/studentcenter/weave/infrastructure/persistence/meeting/adapter/MeetingJpaAdapter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/infrastructure/persistence/src/main/kotlin/com/studentcenter/weave/infrastructure/persistence/meeting/adapter/MeetingJpaAdapter.kt -------------------------------------------------------------------------------- /infrastructure/persistence/src/main/kotlin/com/studentcenter/weave/infrastructure/persistence/meeting/entity/MeetingAttendanceJpaEntity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/infrastructure/persistence/src/main/kotlin/com/studentcenter/weave/infrastructure/persistence/meeting/entity/MeetingAttendanceJpaEntity.kt -------------------------------------------------------------------------------- /infrastructure/persistence/src/main/kotlin/com/studentcenter/weave/infrastructure/persistence/meeting/entity/MeetingJpaEntity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/infrastructure/persistence/src/main/kotlin/com/studentcenter/weave/infrastructure/persistence/meeting/entity/MeetingJpaEntity.kt -------------------------------------------------------------------------------- /infrastructure/persistence/src/main/kotlin/com/studentcenter/weave/infrastructure/persistence/meeting/repository/MeetingAttendanceJpaRepository.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/infrastructure/persistence/src/main/kotlin/com/studentcenter/weave/infrastructure/persistence/meeting/repository/MeetingAttendanceJpaRepository.kt -------------------------------------------------------------------------------- /infrastructure/persistence/src/main/kotlin/com/studentcenter/weave/infrastructure/persistence/meeting/repository/MeetingJpaRepository.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/infrastructure/persistence/src/main/kotlin/com/studentcenter/weave/infrastructure/persistence/meeting/repository/MeetingJpaRepository.kt -------------------------------------------------------------------------------- /infrastructure/persistence/src/main/kotlin/com/studentcenter/weave/infrastructure/persistence/meetingTeam/adapter/MeetingTeamJpaAdapter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/infrastructure/persistence/src/main/kotlin/com/studentcenter/weave/infrastructure/persistence/meetingTeam/adapter/MeetingTeamJpaAdapter.kt -------------------------------------------------------------------------------- /infrastructure/persistence/src/main/kotlin/com/studentcenter/weave/infrastructure/persistence/meetingTeam/entity/MeetingMemberJpaEntity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/infrastructure/persistence/src/main/kotlin/com/studentcenter/weave/infrastructure/persistence/meetingTeam/entity/MeetingMemberJpaEntity.kt -------------------------------------------------------------------------------- /infrastructure/persistence/src/main/kotlin/com/studentcenter/weave/infrastructure/persistence/meetingTeam/entity/MeetingTeamJpaEntity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/infrastructure/persistence/src/main/kotlin/com/studentcenter/weave/infrastructure/persistence/meetingTeam/entity/MeetingTeamJpaEntity.kt -------------------------------------------------------------------------------- /infrastructure/persistence/src/main/kotlin/com/studentcenter/weave/infrastructure/persistence/meetingTeam/repository/MeetingTeamJpaRepository.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/infrastructure/persistence/src/main/kotlin/com/studentcenter/weave/infrastructure/persistence/meetingTeam/repository/MeetingTeamJpaRepository.kt -------------------------------------------------------------------------------- /infrastructure/persistence/src/main/kotlin/com/studentcenter/weave/infrastructure/persistence/suggestion/adapter/SuggestionJpaAdapter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/infrastructure/persistence/src/main/kotlin/com/studentcenter/weave/infrastructure/persistence/suggestion/adapter/SuggestionJpaAdapter.kt -------------------------------------------------------------------------------- /infrastructure/persistence/src/main/kotlin/com/studentcenter/weave/infrastructure/persistence/suggestion/entity/SuggestionJpaEntity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/infrastructure/persistence/src/main/kotlin/com/studentcenter/weave/infrastructure/persistence/suggestion/entity/SuggestionJpaEntity.kt -------------------------------------------------------------------------------- /infrastructure/persistence/src/main/kotlin/com/studentcenter/weave/infrastructure/persistence/suggestion/repository/SuggestionJpaRepository.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/infrastructure/persistence/src/main/kotlin/com/studentcenter/weave/infrastructure/persistence/suggestion/repository/SuggestionJpaRepository.kt -------------------------------------------------------------------------------- /infrastructure/persistence/src/main/kotlin/com/studentcenter/weave/infrastructure/persistence/university/adapter/MajorJpaAdapter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/infrastructure/persistence/src/main/kotlin/com/studentcenter/weave/infrastructure/persistence/university/adapter/MajorJpaAdapter.kt -------------------------------------------------------------------------------- /infrastructure/persistence/src/main/kotlin/com/studentcenter/weave/infrastructure/persistence/university/adapter/UniversityJpaAdapter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/infrastructure/persistence/src/main/kotlin/com/studentcenter/weave/infrastructure/persistence/university/adapter/UniversityJpaAdapter.kt -------------------------------------------------------------------------------- /infrastructure/persistence/src/main/kotlin/com/studentcenter/weave/infrastructure/persistence/university/entity/MajorJpaEntity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/infrastructure/persistence/src/main/kotlin/com/studentcenter/weave/infrastructure/persistence/university/entity/MajorJpaEntity.kt -------------------------------------------------------------------------------- /infrastructure/persistence/src/main/kotlin/com/studentcenter/weave/infrastructure/persistence/university/entity/UniversityJpaEntity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/infrastructure/persistence/src/main/kotlin/com/studentcenter/weave/infrastructure/persistence/university/entity/UniversityJpaEntity.kt -------------------------------------------------------------------------------- /infrastructure/persistence/src/main/kotlin/com/studentcenter/weave/infrastructure/persistence/university/repository/MajorJpaRepository.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/infrastructure/persistence/src/main/kotlin/com/studentcenter/weave/infrastructure/persistence/university/repository/MajorJpaRepository.kt -------------------------------------------------------------------------------- /infrastructure/persistence/src/main/kotlin/com/studentcenter/weave/infrastructure/persistence/university/repository/UniversityJpaRepository.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/infrastructure/persistence/src/main/kotlin/com/studentcenter/weave/infrastructure/persistence/university/repository/UniversityJpaRepository.kt -------------------------------------------------------------------------------- /infrastructure/persistence/src/main/kotlin/com/studentcenter/weave/infrastructure/persistence/user/adapter/DeletedUserInfoJpaAdapter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/infrastructure/persistence/src/main/kotlin/com/studentcenter/weave/infrastructure/persistence/user/adapter/DeletedUserInfoJpaAdapter.kt -------------------------------------------------------------------------------- /infrastructure/persistence/src/main/kotlin/com/studentcenter/weave/infrastructure/persistence/user/adapter/UserAuthInfoJpaAdapter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/infrastructure/persistence/src/main/kotlin/com/studentcenter/weave/infrastructure/persistence/user/adapter/UserAuthInfoJpaAdapter.kt -------------------------------------------------------------------------------- /infrastructure/persistence/src/main/kotlin/com/studentcenter/weave/infrastructure/persistence/user/adapter/UserJpaAdapter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/infrastructure/persistence/src/main/kotlin/com/studentcenter/weave/infrastructure/persistence/user/adapter/UserJpaAdapter.kt -------------------------------------------------------------------------------- /infrastructure/persistence/src/main/kotlin/com/studentcenter/weave/infrastructure/persistence/user/adapter/UserSilJpaAdapter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/infrastructure/persistence/src/main/kotlin/com/studentcenter/weave/infrastructure/persistence/user/adapter/UserSilJpaAdapter.kt -------------------------------------------------------------------------------- /infrastructure/persistence/src/main/kotlin/com/studentcenter/weave/infrastructure/persistence/user/entity/DeletedUserInfoJpaEntity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/infrastructure/persistence/src/main/kotlin/com/studentcenter/weave/infrastructure/persistence/user/entity/DeletedUserInfoJpaEntity.kt -------------------------------------------------------------------------------- /infrastructure/persistence/src/main/kotlin/com/studentcenter/weave/infrastructure/persistence/user/entity/PreRegisteredEmail.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/infrastructure/persistence/src/main/kotlin/com/studentcenter/weave/infrastructure/persistence/user/entity/PreRegisteredEmail.kt -------------------------------------------------------------------------------- /infrastructure/persistence/src/main/kotlin/com/studentcenter/weave/infrastructure/persistence/user/entity/UserAuthInfoJpaEntity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/infrastructure/persistence/src/main/kotlin/com/studentcenter/weave/infrastructure/persistence/user/entity/UserAuthInfoJpaEntity.kt -------------------------------------------------------------------------------- /infrastructure/persistence/src/main/kotlin/com/studentcenter/weave/infrastructure/persistence/user/entity/UserJpaEntity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/infrastructure/persistence/src/main/kotlin/com/studentcenter/weave/infrastructure/persistence/user/entity/UserJpaEntity.kt -------------------------------------------------------------------------------- /infrastructure/persistence/src/main/kotlin/com/studentcenter/weave/infrastructure/persistence/user/entity/UserProfileImageJpaEntity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/infrastructure/persistence/src/main/kotlin/com/studentcenter/weave/infrastructure/persistence/user/entity/UserProfileImageJpaEntity.kt -------------------------------------------------------------------------------- /infrastructure/persistence/src/main/kotlin/com/studentcenter/weave/infrastructure/persistence/user/entity/UserSilJpaEntity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/infrastructure/persistence/src/main/kotlin/com/studentcenter/weave/infrastructure/persistence/user/entity/UserSilJpaEntity.kt -------------------------------------------------------------------------------- /infrastructure/persistence/src/main/kotlin/com/studentcenter/weave/infrastructure/persistence/user/repository/DeletedUserInfoJpaRepository.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/infrastructure/persistence/src/main/kotlin/com/studentcenter/weave/infrastructure/persistence/user/repository/DeletedUserInfoJpaRepository.kt -------------------------------------------------------------------------------- /infrastructure/persistence/src/main/kotlin/com/studentcenter/weave/infrastructure/persistence/user/repository/PreRegisteredEmailRepository.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/infrastructure/persistence/src/main/kotlin/com/studentcenter/weave/infrastructure/persistence/user/repository/PreRegisteredEmailRepository.kt -------------------------------------------------------------------------------- /infrastructure/persistence/src/main/kotlin/com/studentcenter/weave/infrastructure/persistence/user/repository/UserAuthInfoJpaRepository.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/infrastructure/persistence/src/main/kotlin/com/studentcenter/weave/infrastructure/persistence/user/repository/UserAuthInfoJpaRepository.kt -------------------------------------------------------------------------------- /infrastructure/persistence/src/main/kotlin/com/studentcenter/weave/infrastructure/persistence/user/repository/UserJpaRepository.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/infrastructure/persistence/src/main/kotlin/com/studentcenter/weave/infrastructure/persistence/user/repository/UserJpaRepository.kt -------------------------------------------------------------------------------- /infrastructure/persistence/src/main/kotlin/com/studentcenter/weave/infrastructure/persistence/user/repository/UserSilJpaRepository.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/infrastructure/persistence/src/main/kotlin/com/studentcenter/weave/infrastructure/persistence/user/repository/UserSilJpaRepository.kt -------------------------------------------------------------------------------- /infrastructure/persistence/src/main/resources/application-persistence.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/infrastructure/persistence/src/main/resources/application-persistence.yaml -------------------------------------------------------------------------------- /infrastructure/persistence/src/main/resources/db/migration/V10__update_universities.sql: -------------------------------------------------------------------------------- 1 | -- 대학 정보 -- 2 | ALTER TABLE university 3 | MODIFY logo_address VARCHAR(255) NULL; 4 | -------------------------------------------------------------------------------- /infrastructure/persistence/src/main/resources/db/migration/V11__change_meeting_team_add_gender.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/infrastructure/persistence/src/main/resources/db/migration/V11__change_meeting_team_add_gender.sql -------------------------------------------------------------------------------- /infrastructure/persistence/src/main/resources/db/migration/V12__create_user_university_verification_info.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/infrastructure/persistence/src/main/resources/db/migration/V12__create_user_university_verification_info.sql -------------------------------------------------------------------------------- /infrastructure/persistence/src/main/resources/db/migration/V13__create_meeting_member.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/infrastructure/persistence/src/main/resources/db/migration/V13__create_meeting_member.sql -------------------------------------------------------------------------------- /infrastructure/persistence/src/main/resources/db/migration/V14__create_meeting_and_meeting_attendance.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/infrastructure/persistence/src/main/resources/db/migration/V14__create_meeting_and_meeting_attendance.sql -------------------------------------------------------------------------------- /infrastructure/persistence/src/main/resources/db/migration/V15__create_meeting_team_member_summary.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/infrastructure/persistence/src/main/resources/db/migration/V15__create_meeting_team_member_summary.sql -------------------------------------------------------------------------------- /infrastructure/persistence/src/main/resources/db/migration/V16__add_user_kakao_id.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/infrastructure/persistence/src/main/resources/db/migration/V16__add_user_kakao_id.sql -------------------------------------------------------------------------------- /infrastructure/persistence/src/main/resources/db/migration/V17__add_university_display_name.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/infrastructure/persistence/src/main/resources/db/migration/V17__add_university_display_name.sql -------------------------------------------------------------------------------- /infrastructure/persistence/src/main/resources/db/migration/V18__add_profile_image.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/infrastructure/persistence/src/main/resources/db/migration/V18__add_profile_image.sql -------------------------------------------------------------------------------- /infrastructure/persistence/src/main/resources/db/migration/V19__create_chat_room.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/infrastructure/persistence/src/main/resources/db/migration/V19__create_chat_room.sql -------------------------------------------------------------------------------- /infrastructure/persistence/src/main/resources/db/migration/V1__init_user_auth_info.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/infrastructure/persistence/src/main/resources/db/migration/V1__init_user_auth_info.sql -------------------------------------------------------------------------------- /infrastructure/persistence/src/main/resources/db/migration/V20__create_chat_message.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/infrastructure/persistence/src/main/resources/db/migration/V20__create_chat_message.sql -------------------------------------------------------------------------------- /infrastructure/persistence/src/main/resources/db/migration/V21__create_pre_registered_user.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/infrastructure/persistence/src/main/resources/db/migration/V21__create_pre_registered_user.sql -------------------------------------------------------------------------------- /infrastructure/persistence/src/main/resources/db/migration/V22__create_suggestion.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/infrastructure/persistence/src/main/resources/db/migration/V22__create_suggestion.sql -------------------------------------------------------------------------------- /infrastructure/persistence/src/main/resources/db/migration/V2__Create_universities_and_majors.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/infrastructure/persistence/src/main/resources/db/migration/V2__Create_universities_and_majors.sql -------------------------------------------------------------------------------- /infrastructure/persistence/src/main/resources/db/migration/V3__create_user.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/infrastructure/persistence/src/main/resources/db/migration/V3__create_user.sql -------------------------------------------------------------------------------- /infrastructure/persistence/src/main/resources/db/migration/V4__user_add_column.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/infrastructure/persistence/src/main/resources/db/migration/V4__user_add_column.sql -------------------------------------------------------------------------------- /infrastructure/persistence/src/main/resources/db/migration/V5__create_meeting_team.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/infrastructure/persistence/src/main/resources/db/migration/V5__create_meeting_team.sql -------------------------------------------------------------------------------- /infrastructure/persistence/src/main/resources/db/migration/V6__create_deleted_user_info.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/infrastructure/persistence/src/main/resources/db/migration/V6__create_deleted_user_info.sql -------------------------------------------------------------------------------- /infrastructure/persistence/src/main/resources/db/migration/V7__meeting_team_add_status_column.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/infrastructure/persistence/src/main/resources/db/migration/V7__meeting_team_add_status_column.sql -------------------------------------------------------------------------------- /infrastructure/persistence/src/main/resources/db/migration/V8__create_user_sil.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/infrastructure/persistence/src/main/resources/db/migration/V8__create_user_sil.sql -------------------------------------------------------------------------------- /infrastructure/persistence/src/main/resources/db/migration/V9__change_user_id_index_to_unique.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/infrastructure/persistence/src/main/resources/db/migration/V9__change_user_id_index_to_unique.sql -------------------------------------------------------------------------------- /infrastructure/persistence/src/main/resources/db/seed/230205_insert_university_major.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/infrastructure/persistence/src/main/resources/db/seed/230205_insert_university_major.sql -------------------------------------------------------------------------------- /infrastructure/persistence/src/main/resources/db/seed/230408_insert_temp_university_major.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/infrastructure/persistence/src/main/resources/db/seed/230408_insert_temp_university_major.sql -------------------------------------------------------------------------------- /infrastructure/persistence/src/main/resources/db/seed/insert_meeting.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/infrastructure/persistence/src/main/resources/db/seed/insert_meeting.sql -------------------------------------------------------------------------------- /infrastructure/persistence/src/main/resources/db/seed/insert_meeting_team_and_meeting_member.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/infrastructure/persistence/src/main/resources/db/seed/insert_meeting_team_and_meeting_member.sql -------------------------------------------------------------------------------- /infrastructure/persistence/src/main/resources/db/seed/insert_user.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/infrastructure/persistence/src/main/resources/db/seed/insert_user.sql -------------------------------------------------------------------------------- /infrastructure/redis/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/infrastructure/redis/build.gradle.kts -------------------------------------------------------------------------------- /infrastructure/redis/src/main/kotlin/com/studentcenter/weave/infrastructure/redis/chat/adapter/ChatMessageRedisConsumer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/infrastructure/redis/src/main/kotlin/com/studentcenter/weave/infrastructure/redis/chat/adapter/ChatMessageRedisConsumer.kt -------------------------------------------------------------------------------- /infrastructure/redis/src/main/kotlin/com/studentcenter/weave/infrastructure/redis/chat/adapter/ChatMessageRedisPublisher.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/infrastructure/redis/src/main/kotlin/com/studentcenter/weave/infrastructure/redis/chat/adapter/ChatMessageRedisPublisher.kt -------------------------------------------------------------------------------- /infrastructure/redis/src/main/kotlin/com/studentcenter/weave/infrastructure/redis/chat/config/ChatMessageRedisConfig.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/infrastructure/redis/src/main/kotlin/com/studentcenter/weave/infrastructure/redis/chat/config/ChatMessageRedisConfig.kt -------------------------------------------------------------------------------- /infrastructure/redis/src/main/kotlin/com/studentcenter/weave/infrastructure/redis/common/config/RedisConfig.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/infrastructure/redis/src/main/kotlin/com/studentcenter/weave/infrastructure/redis/common/config/RedisConfig.kt -------------------------------------------------------------------------------- /infrastructure/redis/src/main/kotlin/com/studentcenter/weave/infrastructure/redis/common/properties/RedisProperties.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/infrastructure/redis/src/main/kotlin/com/studentcenter/weave/infrastructure/redis/common/properties/RedisProperties.kt -------------------------------------------------------------------------------- /infrastructure/redis/src/main/kotlin/com/studentcenter/weave/infrastructure/redis/meetingTeam/adapter/MeetingTeamInvitationRedisAdapter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/infrastructure/redis/src/main/kotlin/com/studentcenter/weave/infrastructure/redis/meetingTeam/adapter/MeetingTeamInvitationRedisAdapter.kt -------------------------------------------------------------------------------- /infrastructure/redis/src/main/kotlin/com/studentcenter/weave/infrastructure/redis/meetingTeam/entity/MeetingTeamInvitationRedisHash.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/infrastructure/redis/src/main/kotlin/com/studentcenter/weave/infrastructure/redis/meetingTeam/entity/MeetingTeamInvitationRedisHash.kt -------------------------------------------------------------------------------- /infrastructure/redis/src/main/kotlin/com/studentcenter/weave/infrastructure/redis/meetingTeam/repository/MeetingTeamInvitationRedisRepository.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/infrastructure/redis/src/main/kotlin/com/studentcenter/weave/infrastructure/redis/meetingTeam/repository/MeetingTeamInvitationRedisRepository.kt -------------------------------------------------------------------------------- /infrastructure/redis/src/main/kotlin/com/studentcenter/weave/infrastructure/redis/user/adapter/UserRefreshTokenRedisAdapter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/infrastructure/redis/src/main/kotlin/com/studentcenter/weave/infrastructure/redis/user/adapter/UserRefreshTokenRedisAdapter.kt -------------------------------------------------------------------------------- /infrastructure/redis/src/main/kotlin/com/studentcenter/weave/infrastructure/redis/user/adapter/UserVerificationNumberRedisAdapter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/infrastructure/redis/src/main/kotlin/com/studentcenter/weave/infrastructure/redis/user/adapter/UserVerificationNumberRedisAdapter.kt -------------------------------------------------------------------------------- /infrastructure/redis/src/main/kotlin/com/studentcenter/weave/infrastructure/redis/user/entity/UserRefreshTokenRedisHash.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/infrastructure/redis/src/main/kotlin/com/studentcenter/weave/infrastructure/redis/user/entity/UserRefreshTokenRedisHash.kt -------------------------------------------------------------------------------- /infrastructure/redis/src/main/kotlin/com/studentcenter/weave/infrastructure/redis/user/entity/UserVerificationNumberRedisHash.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/infrastructure/redis/src/main/kotlin/com/studentcenter/weave/infrastructure/redis/user/entity/UserVerificationNumberRedisHash.kt -------------------------------------------------------------------------------- /infrastructure/redis/src/main/kotlin/com/studentcenter/weave/infrastructure/redis/user/repository/UserRefreshTokenRedisRepository.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/infrastructure/redis/src/main/kotlin/com/studentcenter/weave/infrastructure/redis/user/repository/UserRefreshTokenRedisRepository.kt -------------------------------------------------------------------------------- /infrastructure/redis/src/main/kotlin/com/studentcenter/weave/infrastructure/redis/user/repository/UserVerificationNumberRedisRepository.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/infrastructure/redis/src/main/kotlin/com/studentcenter/weave/infrastructure/redis/user/repository/UserVerificationNumberRedisRepository.kt -------------------------------------------------------------------------------- /infrastructure/redis/src/main/resources/application-redis.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/infrastructure/redis/src/main/resources/application-redis.yaml -------------------------------------------------------------------------------- /settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/settings.gradle.kts -------------------------------------------------------------------------------- /support/common/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/support/common/build.gradle.kts -------------------------------------------------------------------------------- /support/common/src/main/kotlin/com/studentcenter/weave/support/common/dto/ScrollRequest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/support/common/src/main/kotlin/com/studentcenter/weave/support/common/dto/ScrollRequest.kt -------------------------------------------------------------------------------- /support/common/src/main/kotlin/com/studentcenter/weave/support/common/dto/ScrollResponse.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/support/common/src/main/kotlin/com/studentcenter/weave/support/common/dto/ScrollResponse.kt -------------------------------------------------------------------------------- /support/common/src/main/kotlin/com/studentcenter/weave/support/common/exception/CustomException.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/support/common/src/main/kotlin/com/studentcenter/weave/support/common/exception/CustomException.kt -------------------------------------------------------------------------------- /support/common/src/main/kotlin/com/studentcenter/weave/support/common/exception/SystemException.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/support/common/src/main/kotlin/com/studentcenter/weave/support/common/exception/SystemException.kt -------------------------------------------------------------------------------- /support/common/src/main/kotlin/com/studentcenter/weave/support/common/uuid/UuidCreator.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/support/common/src/main/kotlin/com/studentcenter/weave/support/common/uuid/UuidCreator.kt -------------------------------------------------------------------------------- /support/common/src/main/kotlin/com/studentcenter/weave/support/common/vo/Email.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/support/common/src/main/kotlin/com/studentcenter/weave/support/common/vo/Email.kt -------------------------------------------------------------------------------- /support/common/src/main/kotlin/com/studentcenter/weave/support/common/vo/UpdateParam.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/support/common/src/main/kotlin/com/studentcenter/weave/support/common/vo/UpdateParam.kt -------------------------------------------------------------------------------- /support/common/src/main/kotlin/com/studentcenter/weave/support/common/vo/Url.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/support/common/src/main/kotlin/com/studentcenter/weave/support/common/vo/Url.kt -------------------------------------------------------------------------------- /support/common/src/test/kotlin/com/studentcenter/weave/support/common/vo/EmailTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/support/common/src/test/kotlin/com/studentcenter/weave/support/common/vo/EmailTest.kt -------------------------------------------------------------------------------- /support/common/src/test/kotlin/com/studentcenter/weave/support/common/vo/UrlTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/support/common/src/test/kotlin/com/studentcenter/weave/support/common/vo/UrlTest.kt -------------------------------------------------------------------------------- /support/jacoco/build.gradle.kts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /support/lock/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/support/lock/build.gradle.kts -------------------------------------------------------------------------------- /support/lock/src/main/kotlin/com/studentcenter/weave/support/lock/DistributedLock.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/support/lock/src/main/kotlin/com/studentcenter/weave/support/lock/DistributedLock.kt -------------------------------------------------------------------------------- /support/lock/src/main/kotlin/com/studentcenter/weave/support/lock/DistributedLockAspect.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/support/lock/src/main/kotlin/com/studentcenter/weave/support/lock/DistributedLockAspect.kt -------------------------------------------------------------------------------- /support/lock/src/main/kotlin/com/studentcenter/weave/support/lock/DistributedLockConfig.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/support/lock/src/main/kotlin/com/studentcenter/weave/support/lock/DistributedLockConfig.kt -------------------------------------------------------------------------------- /support/lock/src/main/kotlin/com/studentcenter/weave/support/lock/DistributedLockTransactionProcessor.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/support/lock/src/main/kotlin/com/studentcenter/weave/support/lock/DistributedLockTransactionProcessor.kt -------------------------------------------------------------------------------- /support/lock/src/testFixtures/kotlin/com/studentcetner/weave/support/lock/DistributedLockTestInitializer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/support/lock/src/testFixtures/kotlin/com/studentcetner/weave/support/lock/DistributedLockTestInitializer.kt -------------------------------------------------------------------------------- /support/logger/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/support/logger/build.gradle.kts -------------------------------------------------------------------------------- /support/security/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/support/security/build.gradle.kts -------------------------------------------------------------------------------- /support/security/src/main/kotlin/com/studentcenter/weave/support/security/authority/Authentication.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/support/security/src/main/kotlin/com/studentcenter/weave/support/security/authority/Authentication.kt -------------------------------------------------------------------------------- /support/security/src/main/kotlin/com/studentcenter/weave/support/security/context/SecurityContext.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/support/security/src/main/kotlin/com/studentcenter/weave/support/security/context/SecurityContext.kt -------------------------------------------------------------------------------- /support/security/src/main/kotlin/com/studentcenter/weave/support/security/context/SecurityContextHolder.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/support/security/src/main/kotlin/com/studentcenter/weave/support/security/context/SecurityContextHolder.kt -------------------------------------------------------------------------------- /support/security/src/main/kotlin/com/studentcenter/weave/support/security/jwt/exception/JwtException.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/support/security/src/main/kotlin/com/studentcenter/weave/support/security/jwt/exception/JwtException.kt -------------------------------------------------------------------------------- /support/security/src/main/kotlin/com/studentcenter/weave/support/security/jwt/util/JwtTokenProvider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/support/security/src/main/kotlin/com/studentcenter/weave/support/security/jwt/util/JwtTokenProvider.kt -------------------------------------------------------------------------------- /support/security/src/main/kotlin/com/studentcenter/weave/support/security/jwt/vo/JwtClaims.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/support/security/src/main/kotlin/com/studentcenter/weave/support/security/jwt/vo/JwtClaims.kt -------------------------------------------------------------------------------- /support/security/src/main/kotlin/com/studentcenter/weave/support/security/jwt/vo/JwtClaimsDsl.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/support/security/src/main/kotlin/com/studentcenter/weave/support/security/jwt/vo/JwtClaimsDsl.kt -------------------------------------------------------------------------------- /support/security/src/test/kotlin/com/studentcenter/weave/support/security/jwt/util/JwtTokenProviderTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Student-Center/weave-server/HEAD/support/security/src/test/kotlin/com/studentcenter/weave/support/security/jwt/util/JwtTokenProviderTest.kt --------------------------------------------------------------------------------