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.
feat: 구글 스프레드시트 API MVP 구현 #397
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
base: develop
Are you sure you want to change the base?
Uh oh!
There was an error while loading. Please reload this page.
feat: 구글 스프레드시트 API MVP 구현 #397
Changes from all commits
7d47e1875e88e0d51b6ff3a93a1a3207516d03fa986535eeeb0604ca60a90e95b78723916cc61bcf5c3cae151f3d453f38d0ddd9623fc56bcef5033a0477d862b973f55885718e878504b39e1742bde6e771b3133023aeddec6d8a629f3b8File filter
Filter by extension
Conversations
Uh oh!
There was an error while loading. Please reload this page.
Jump to
Uh oh!
There was an error while loading. Please reload this page.
There are no files selected for viewing
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.
[LEVEL: medium]
spreadsheetId가@NotBlank만 적용되어 URL 전체 문자열이나 허용되지 않은 문자를 포함한 값도 통과됩니다.이 값이 저장되면 등록 API는 성공해도 실제 동기화 시점에 Google API 호출 실패로 500이 발생할 수 있습니다(예:
/d/.../edit전체 URL 입력).@Pattern(regexp = "^[A-Za-z0-9_-]+$")같은 형식 검증을 추가해 요청 단계에서 400으로 차단해 주세요; As per coding guidelinessrc/main/java/**/*.java: "보안, 트랜잭션 경계, 예외 처리, N+1, 성능 회귀 가능성을 우선 점검한다."🤖 Prompt for AI Agents
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.