Replace all @Controller('acadenice/...') decorators with 'v1/...' on 16 NestJS controllers. Update all client services, hooks, tests, extension-clipper, and doc comments to match. DB table names (acadenice_*) and folder structure untouched.
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
7 lines
251 B
TypeScript
7 lines
251 B
TypeScript
import api from "@/lib/api-client";
|
|
import { OidcStatusResponse } from "../types/oidc-status.types";
|
|
|
|
export async function getOidcStatus(): Promise<OidcStatusResponse> {
|
|
const resp = await api.get("/v1/security/oidc-status");
|
|
return resp.data;
|
|
}
|