mirror of
https://github.com/certd/certd.git
synced 2026-05-17 13:57:31 +08:00
fix: 修复cname服务普通用户access访问权限问题
This commit is contained in:
@@ -8,7 +8,7 @@ export class CnameProxyService implements ICnameProxyService {
|
||||
this.getter = getter;
|
||||
}
|
||||
|
||||
getByDomain(domain: string): Promise<CnameRecord> {
|
||||
return this.getter<CnameRecord>(domain, this.userId);
|
||||
async getByDomain(domain: string): Promise<CnameRecord> {
|
||||
return await this.getter<CnameRecord>(domain, this.userId);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user