-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Issue: 네트워크 통신 #35
Labels
Comments
Merged
jungseok-corine
added a commit
that referenced
this issue
Oct 31, 2024
jungseok-corine
added a commit
that referenced
this issue
Nov 8, 2024
1. postFeed 코드 수정 (멀티파트폼 데이터 형식 수정)
jungseok-corine
added a commit
that referenced
this issue
Nov 11, 2024
jungseok-corine
added a commit
that referenced
this issue
Nov 11, 2024
feat(#35): getScheduleUseCase 추가
jungseok-corine
added a commit
that referenced
this issue
Nov 11, 2024
Merged
jungseok-corine
added a commit
that referenced
this issue
Nov 16, 2024
jungseok-corine
added a commit
that referenced
this issue
Nov 16, 2024
jungseok-corine
added a commit
that referenced
this issue
Nov 16, 2024
jungseok-corine
added a commit
that referenced
this issue
Nov 22, 2024
jungseok-corine
added a commit
that referenced
this issue
Dec 26, 2024
jungseok-corine
added a commit
that referenced
this issue
Jan 5, 2025
jungseok-corine
added a commit
that referenced
this issue
Jan 5, 2025
feat(#35): putProfileImage API 성공시 UserDefaultsManager의 profileImageURL값 변경
jungseok-corine
added a commit
that referenced
this issue
Jan 13, 2025
jungseok-corine
added a commit
that referenced
this issue
Jan 13, 2025
jungseok-corine
added a commit
that referenced
this issue
Jan 20, 2025
1. getDailyScheduleUseCase 추가 protocol GetDailyScheduleUseCase { func execute(date: String, completion: @escaping (Result<[GetScheduleByDateResponse], Error>) -> Void) } class GetDailyScheduleUseCaseImpl: GetDailyScheduleUseCase { private let scheduleRepository: ScheduleRepositoryProtocol init(scheduleRepository: ScheduleRepositoryProtocol) { self.scheduleRepository = scheduleRepository } func execute(date: String, completion: @escaping (Result<[GetScheduleByDateResponse], Error>) -> Void) { scheduleRepository.getDailySchedule(date: date) { result in switch result { case .success(let response): completion(.success(response.data)) case .failure(let error): completion(.failure(error)) } } } } 2. scheduleService, scheduleRepository 수정 ( memberSeq는 scheduleService에서 userDefaultsmanager에서 memberSeq를 불러와서 처리하면 공통된 memberSeq를 불러오는 작업일 경우 여러번 불러올 필요 없어짐)
jungseok-corine
added a commit
that referenced
this issue
Jan 20, 2025
1. getDailyScheduleUseCase 추가 protocol GetDailyScheduleUseCase { func execute(date: String, completion: @escaping (Result<[GetScheduleByDateResponse], Error>) -> Void) } class GetDailyScheduleUseCaseImpl: GetDailyScheduleUseCase { private let scheduleRepository: ScheduleRepositoryProtocol init(scheduleRepository: ScheduleRepositoryProtocol) { self.scheduleRepository = scheduleRepository } func execute(date: String, completion: @escaping (Result<[GetScheduleByDateResponse], Error>) -> Void) { scheduleRepository.getDailySchedule(date: date) { result in switch result { case .success(let response): completion(.success(response.data)) case .failure(let error): completion(.failure(error)) } } } } 2. scheduleService, scheduleRepository 수정 ( memberSeq는 scheduleService에서 userDefaultsmanager에서 memberSeq를 불러와서 처리하면 공통된 memberSeq를 불러오는 작업일 경우 여러번 불러올 필요 없어짐)
jungseok-corine
added a commit
that referenced
this issue
Jan 20, 2025
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
friend-request
coordinate
schedule
member
admin
feed
hide-feed
location
book-mark
friend
The text was updated successfully, but these errors were encountered: