For #27282 add new idp section on the integration page. This page will show the different statuses for the users idp connection with fleet. **not connected**  **successful connection**  **failed connection**  <!-- Note that API documentation changes are now addressed by the product design team. --> - [x] Changes file added for user-visible changes in `changes/`, `orbit/changes/` or `ee/fleetd-chrome/changes`. See [Changes files](https://github.com/fleetdm/fleet/blob/main/docs/Contributing/Committing-Changes.md#changes-files) for more information. - [ ] Added/updated automated tests - [x] Manual QA for all new/changed functionality
18 lines
395 B
TypeScript
18 lines
395 B
TypeScript
import sendRequest from "services";
|
|
import endpoints from "utilities/endpoints";
|
|
|
|
export interface IGetSCIMDetailsResponse {
|
|
last_request: {
|
|
requested_at: string;
|
|
status: string;
|
|
details: string;
|
|
} | null;
|
|
}
|
|
|
|
export default {
|
|
getSCIMDetails: (): Promise<IGetSCIMDetailsResponse> => {
|
|
const { SCIM_DETAILS } = endpoints;
|
|
return sendRequest("GET", SCIM_DETAILS);
|
|
},
|
|
};
|