fix: 修复cname服务普通用户access访问权限问题

This commit is contained in:
xiaojunnuo
2024-10-20 11:47:35 +08:00
parent e8b5fcf3ee
commit c1e3e2ee1f
12 changed files with 65 additions and 28 deletions
+1
View File
@@ -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;