48 lines
1.3 KiB
TypeScript
48 lines
1.3 KiB
TypeScript
import request from '@/config/axios'
|
|
|
|
export interface OAuth2ClientVO {
|
|
id: number
|
|
clientId: string
|
|
secret: string
|
|
name: string
|
|
logo: string
|
|
description: string
|
|
status: number
|
|
accessTokenValiditySeconds: number
|
|
refreshTokenValiditySeconds: number
|
|
redirectUris: string[]
|
|
autoApprove: boolean
|
|
authorizedGrantTypes: string[]
|
|
scopes: string[]
|
|
authorities: string[]
|
|
resourceIds: string[]
|
|
additionalInformation: string
|
|
isAdditionalInformationJson: boolean
|
|
createTime: Date
|
|
}
|
|
|
|
// 查询 OAuth2 客户端的列表
|
|
export const getOAuth2ClientPage = (params: PageParam) => {
|
|
return request.get({ url: '/system/oauth2-client/page', params })
|
|
}
|
|
|
|
// 查询 OAuth2 客户端的详情
|
|
export const getOAuth2Client = (id: number) => {
|
|
return request.get({ url: '/system/oauth2-client/get?id=' + id })
|
|
}
|
|
|
|
// 新增 OAuth2 客户端
|
|
export const createOAuth2Client = (data: OAuth2ClientVO) => {
|
|
return request.post({ url: '/system/oauth2-client/create', data })
|
|
}
|
|
|
|
// 修改 OAuth2 客户端
|
|
export const updateOAuth2Client = (data: OAuth2ClientVO) => {
|
|
return request.put({ url: '/system/oauth2-client/update', data })
|
|
}
|
|
|
|
// 删除 OAuth2
|
|
export const deleteOAuth2Client = (id: number) => {
|
|
return request.delete({ url: '/system/oauth2-client/delete?id=' + id })
|
|
}
|