-
Notifications
You must be signed in to change notification settings - Fork 1
커스텀 시간표 수정 시, 커스텀 시간표 표시 활성화 #215
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
Merged
baekteun
merged 1 commit into
master
from
feature/on-visible-modify-timetable-when-save
Mar 29, 2026
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
현재 구현은 커스텀 시간표를 저장할 때마다
isOnModifiedTimeTable설정을true로 변경합니다. 이로 인해 사용자가 의도적으로 이 기능을 비활성화했더라도, 시간표를 수정할 때마다 다시 활성화되어 사용자 경험을 해칠 수 있습니다. 예를 들어, 방학 중에 시간표 표시를 꺼놨는데, 개학을 대비해 시간표를 미리 수정하는 경우 원치 않게 시간표가 표시될 수 있습니다.이 설정을 자동으로 활성화하는 것은 사용자가 처음으로 커스텀 시간표를 설정할 때 한 번만 수행하는 것이 더 나은 사용자 경험을 제공할 수 있습니다. 예를 들어, 데이터베이스에 저장된 커스텀 시간표가 없을 때만 이 값을
true로 설정하는 방법을 고려해볼 수 있습니다.