fix: SSAFY OAuth 로그인 수정 및 API 클라이언트 안정성 개선 (8건)
- SSAFY OAuth state 파라미터 전달 추가 (로그인 불능 해결) - POST/PUT/DELETE 5xx 및 네트워크 에러 재시도 방지 (멱등 요청만 재시도) - UserAdmin 페이지네이션 추가 (offset/limit) Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
@@ -1,7 +1,7 @@
|
||||
import { apiFetch } from './client';
|
||||
|
||||
export function getUsers() {
|
||||
return apiFetch('/api/users');
|
||||
export function getUsers(offset = 0, limit = 20) {
|
||||
return apiFetch(`/api/users?offset=${offset}&limit=${limit}`);
|
||||
}
|
||||
|
||||
export function updateUserRole(id, role) {
|
||||
|
||||
Reference in New Issue
Block a user