-
Notifications
You must be signed in to change notification settings - Fork 2
#890 메인 페이지에 공지사항 기능 추가 #891
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
Conversation
Merge branch 'dev' into 890-show-notice-by-notion
✅ Deploy Preview for taxi-dev-preview ready!
To edit notification comments on pull requests, go to your Netlify project configuration. |
location /notion/ { | ||
proxy_pass https://www.notion.so/api/v3/; | ||
proxy_set_header Host www.notion.so; | ||
proxy_ssl_server_name on; | ||
proxy_ssl_name www.notion.so; | ||
|
||
add_header 'Access-Control-Allow-Origin' '*'; | ||
add_header 'Access-Control-Allow-Methods' 'GET, POST, OPTIONS'; | ||
add_header 'Access-Control-Allow-Headers' '*'; | ||
|
||
if ($request_method = 'OPTIONS') { | ||
return 204; | ||
} | ||
} |
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.
LGTM! 고생하셨어요..! (재영님 리뷰 후에 머지 부탁드립니다)
pin된 공지사항이 없는 경우에는 그냥 메인에서 아예 안뜨게 하는게 좋을 거 같은데 어떻게 생각하시나용 |
그게 더 좋아보이네요 |
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.
LGTM! 감사합니다~~
Summary
It closes #890
Images or Screenshots
Further Work