Add private key user info to settings page.

This commit is contained in:
Spencer Ofwiti
2021-05-18 10:33:38 +03:00
parent 51f4f052c7
commit 506be2eb5b
3 changed files with 10 additions and 3 deletions

View File

@@ -211,4 +211,8 @@ export class AuthService {
getPrivateKey(): any {
return this.mutableKeyStore.getPrivateKey();
}
getPrivateKeyInfo(): any {
return this.getPrivateKey().users[0].userId;
}
}