-
-
Notifications
You must be signed in to change notification settings - Fork 2.9k
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
refactor(server): auth #5895
refactor(server): auth #5895
Conversation
This stack of pull requests is managed by Graphite. Learn more about stacking. |
a8546bc
to
278519a
Compare
278519a
to
bee73b9
Compare
☁️ Nx Cloud ReportCI is running/has finished running commands for commit fb3a0e7. As they complete they will appear below. Click to see the status, the terminal output, and the build insights. 📂 See all runs for this CI Pipeline Execution ✅ Successfully ran 6 targets
Sent with 💌 from NxCloud. |
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## canary #5895 +/- ##
==========================================
- Coverage 61.45% 61.10% -0.36%
==========================================
Files 475 487 +12
Lines 21375 21928 +553
Branches 1896 1922 +26
==========================================
+ Hits 13136 13399 +263
- Misses 8017 8306 +289
- Partials 222 223 +1
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. |
296c829
to
ad608e0
Compare
174dedd
to
15d79fb
Compare
15d79fb
to
b531c90
Compare
b531c90
to
3437fc3
Compare
cbce858
to
fa146ef
Compare
7396b58
to
d507e40
Compare
d507e40
to
075e5fd
Compare
7df6e3c
to
f7226c0
Compare
packages/frontend/component/src/components/auth-components/onboarding-page.tsx
Show resolved
Hide resolved
f7226c0
to
18edaed
Compare
Merge activity
|
Remove `next-auth` and implement our own Authorization/Authentication system from scratch. ## Server - [x] tokens - [x] function - [x] encryption - [x] AuthController - [x] /api/auth/sign-in - [x] /api/auth/sign-out - [x] /api/auth/session - [x] /api/auth/session (WE SUPPORT MULTI-ACCOUNT!) - [x] OAuthPlugin - [x] OAuthController - [x] /oauth/login - [x] /oauth/callback - [x] Providers - [x] Google - [x] GitHub ## Client - [x] useSession - [x] cloudSignIn - [x] cloudSignOut ## NOTE: Tests will be adding in the future
Remove
next-auth
and implement our own Authorization/Authentication system from scratch.Server
tokens
AuthController
OAuthPlugin
Client
NOTE:
Tests will be adding in the future