Skip to content
Snippets Groups Projects

[enh] Optimize BMA `/wot/certifiers-of/:search` and `/wot/certified-by/:search` - Close #1440

Merged Benoit Lavenier requested to merge fix/1440/optimize_certifiers_of into dev
All threads resolved!
Files
3
+ 11
0
@@ -743,6 +743,17 @@ export class FileDAL implements ServerDAO {
@@ -743,6 +743,17 @@ export class FileDAL implements ServerDAO {
return await this.iindexDAL.getFromPubkeyOrUid(search);
return await this.iindexDAL.getFromPubkeyOrUid(search);
}
}
 
async getWrittenIdtyByPubkeyForHashingAndIsMember(
 
pub: string
 
): Promise<{
 
uid: string;
 
created_on: string;
 
pub: string;
 
member: boolean;
 
} | null> {
 
return await this.iindexDAL.getFromPubkey(pub);
 
}
 
async getWrittenIdtyByPubkeyForRevocationCheck(
async getWrittenIdtyByPubkeyForRevocationCheck(
pubkey: string
pubkey: string
): Promise<{
): Promise<{
Loading