-
Couldn't load subscription status.
- Fork 5
Correct API fetch params and data in few settings actions #1543
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
Correct API fetch params and data in few settings actions #1543
Conversation
WalkthroughTwo UI components update how they form API requests: one moves a service account identifier from request body to URL params; the other moves provider from URL params to request body and removes user from params. No exported interfaces changed. Changes
Sequence Diagram(s)sequenceDiagram
participant UI as Settings UI
participant API as Backend API
rect rgba(200,235,255,0.25)
note over UI,API: Service Account Removal (changed)
UI->>API: DELETE /service-accounts/:uuid\nBody: {}
API-->>UI: 200/4xx
end
rect rgba(220,255,220,0.25)
note over UI,API: User Connection Disconnect (changed)
UI->>API: POST /connections/disconnect?provider=:p\nBody: { provider: p }
API-->>UI: 200/4xx
end
Estimated code review effort🎯 2 (Simple) | ⏱️ ~10 minutes Poem
Pre-merge checks and finishing touches❌ Failed checks (1 warning)
✅ Passed checks (2 passed)
✨ Finishing touches
🧪 Generate unit tests
📜 Recent review detailsConfiguration used: CodeRabbit UI Review profile: CHILL Plan: Pro 📒 Files selected for processing (2)
⏰ Context from checks skipped due to timeout of 90000ms. You can increase the timeout in your CodeRabbit configuration to a maximum of 15 minutes (900000ms). (4)
🔇 Additional comments (2)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
bd91070 to
e6fba84
Compare
5643f63 to
c07f9f2
Compare
c07f9f2 to
47294ed
Compare
e6fba84 to
0ef1a10
Compare
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.
Nice 👍
47294ed to
c392acb
Compare
0ef1a10 to
c9789f0
Compare
c392acb to
52c3204
Compare
Correct the params and data in connection Disconnect Correct the params and data in service account remove
449218f to
8b08754
Compare
52c3204 to
5d42bcd
Compare

Correct the params and data in connection Disconnect
Correct the params and data in service account remove
Summary by CodeRabbit
Bug Fixes
Refactor