Skip to content
Snippets Groups Projects
Commit 04d22756 authored by Cédric Moreau's avatar Cédric Moreau
Browse files

[enh] Sandbox: keep `pubkey` + add `issuer` control

parent 5a190a7a
No related branches found
No related tags found
3 merge requests!1220Stable/ws2p v1.1 trymerge,!1208Stable/ws2p v1.1,!1154Typage
export interface DBDocument { export interface DBDocument {
issuers: string[]; pubkey?: string
issuer?: string
issuers?: string[]
} }
\ No newline at end of file
...@@ -13,7 +13,9 @@ export class SandBox<T extends DBDocument> { ...@@ -13,7 +13,9 @@ export class SandBox<T extends DBDocument> {
} }
async acceptNewSandBoxEntry(element:T, pubkey:string) { async acceptNewSandBoxEntry(element:T, pubkey:string) {
if (element.issuers !== undefined && element.issuers.indexOf(pubkey) !== -1) { if (element.pubkey === pubkey
|| element.issuer === pubkey
|| (element.issuers !== undefined && element.issuers.indexOf(pubkey) !== -1)) {
return true; return true;
} }
const elements = await this.findElements() const elements = await this.findElements()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment