-
Notifications
You must be signed in to change notification settings - Fork 0
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
feat: プロフィール画像を登録する API を作成 #256
Conversation
PR Reviewer Guide 🔍(Review updated until commit efa4d73)Here are some key observations to aid the review process:
|
/review |
Persistent review updated to latest commit efa4d73 |
except Exception as e: | ||
raise ValueError("Invalid base64-encoded image data") from e | ||
|
||
if len(decoded_data) > MAX_FILE_SIZE_BYTES: |
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.
サイズが大きすぎるについて教えてほしい。
サイズ制限がどこの仕様上あるの?
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.
ないです。
削除しました。
User description
概要
プロファイル画像を登録するAPIを作成
変更点
このセクションでは、具体的な変更点や修正箇所を箇条書きでリストアップしてください。
影響範囲
テスト
関連 Issue
PR Type
Enhancement
Description
/settings
を追加し、画像アップロード機能を提供します。Changes walkthrough 📝
backend-stack.ts
Backend Stack に Settings コンストラクトを追加
src/backend/lib/backend-stack.ts
Settings
コンストラクトを追加settings
を追加settings.ts
プロフィール画像アップロード用の設定を追加
src/backend/lib/constructs/settings.ts
upload_profile_image.py
画像アップロード用 Lambda 関数の実装
src/backend/lambda/upload_profile_image/upload_profile_image.py
test_upload_profile_image.py
画像アップロード機能のテストを追加
src/backend/test/pytest/test_upload_profile_image.py
decode_image_data
関数のテストを追加upload_to_s3
関数のテストを追加