Browse Source

Revert "REPORT-86413 feat: 数据连接适配平台加解密改造"

This reverts commit 1cfe9d2ddb.
release/11.0
Austin.Duan 2 years ago
parent
commit
057f9d804c
  1. 6
      src/modules/crud/decision.api.ts
  2. 1
      types/globals.d.ts

6
src/modules/crud/decision.api.ts

@ -107,11 +107,13 @@ export class DecisionApi implements Api {
}
getCipher(password: string) {
return Dec.Utils['getTransCipherText'](password);
return BI.Providers.getProvider('dec.provider.cipher')
.getCipher(password);
}
getPlain(cipher: string) {
return Dec.Utils['getPlainText'](cipher);
return BI.Providers.getProvider('dec.provider.cipher')
.getPlain(cipher);
}
getHyperlink(name: string) {

1
types/globals.d.ts vendored

@ -13,7 +13,6 @@ declare const Dec: {
connected: boolean;
};
system: {};
Utils: {},
personal: {
username: string;
};

Loading…
Cancel
Save