You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
1.0 KiB
34 lines
1.0 KiB
import type { PagedResultDto } from "#/abp-core";
|
|
import type { OpenIddictAuthorizationDto, OpenIddictAuthorizationGetListInput } from "#/openiddict/authorizations";
|
|
|
|
import requestClient from "../request";
|
|
|
|
/**
|
|
* 删除授权
|
|
* @param id 授权id
|
|
*/
|
|
export function deleteApi(id: string): Promise<void> {
|
|
return requestClient.delete(`/api/openiddict/authorizations/${id}`);
|
|
}
|
|
|
|
/**
|
|
* 查询授权
|
|
* @param id 授权id
|
|
* @returns 授权实体数据传输对象
|
|
*/
|
|
export function getApi(id: string): Promise<OpenIddictAuthorizationDto> {
|
|
return requestClient.get<OpenIddictAuthorizationDto>(`/api/openiddict/authorizations/${id}`);
|
|
}
|
|
|
|
/**
|
|
* 查询授权分页列表
|
|
* @param input 过滤参数
|
|
* @returns 授权实体数据传输对象分页列表
|
|
*/
|
|
export function getPagedListApi(
|
|
input?: OpenIddictAuthorizationGetListInput,
|
|
): Promise<PagedResultDto<OpenIddictAuthorizationDto>> {
|
|
return requestClient.get<PagedResultDto<OpenIddictAuthorizationDto>>("/api/openiddict/authorizations", {
|
|
params: input,
|
|
});
|
|
}
|
|
|