mirror of
https://github.com/certd/certd.git
synced 2026-04-24 04:17:25 +08:00
fix: 修复cname服务普通用户access访问权限问题
This commit is contained in:
@@ -16,6 +16,7 @@ export type AccessDefine = Registrable & {
|
||||
};
|
||||
export interface IAccessService {
|
||||
getById<T = any>(id: any): Promise<T>;
|
||||
getCommonById<T = any>(id: any): Promise<T>;
|
||||
}
|
||||
|
||||
export interface IAccess {
|
||||
|
||||
@@ -1,9 +1,13 @@
|
||||
import { IAccess } from "../access";
|
||||
|
||||
export type CnameProvider = {
|
||||
id: any;
|
||||
domain: string;
|
||||
dnsProviderType: string;
|
||||
access?: IAccess;
|
||||
accessId: any;
|
||||
};
|
||||
|
||||
export type CnameRecord = {
|
||||
id: any;
|
||||
domain: string;
|
||||
|
||||
Reference in New Issue
Block a user