-
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: invite user, admin setup #132
Conversation
✅ Deploy Preview for vuefes-2024 ready!
To edit notification comments on pull requests, go to your Netlify site configuration. |
// for https on localhost | ||
// devServer: { | ||
// https: { | ||
// key: './certificates/localhost-key.pem', |
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.
✍️
ローカルで HTTPS の下より確認できるようにしています
オレオレ証明書 (.pem) の作成については、各自進めていただければと思います
} | ||
|
||
if (!supabaseUrl || !supabaseKey) { | ||
return { signedUserId: null, onAuthChanged } |
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.
最後のreturnにあわせて
return { hasAuth: false, onAuthChanged }
にするか、
return { signedUserId: null, hasAuth: false, onAuthChanged }
がよいかと思いました。
今のところ signedUserId を使わないのであれば返却しなくてもよいかもしれないです。
2つのreturnの中身を統一すべきかと思います
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.
ご確認いただきありがとうございます!
おっしゃるように signedUserId は使用されていませんので、削除しておきました mm
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
Deploying vuefes-2024-designsystem with Cloudflare Pages
|
一旦マージします、何かあれば随時 PR 上げてください mm |
やったこと一覧
cc: @vuejs-jp/vuefes-2024-maintainer