Implement account public key endpoint

This commit is contained in:
Akihiko Odaki
2018-04-01 20:07:04 +09:00
parent a3cef6e9b5
commit cba73d6bc1
6 changed files with 66 additions and 52 deletions

View File

@@ -3,6 +3,7 @@ import { extractPublic } from '../../../../crypto_key';
import { ILocalAccount } from '../../../../models/user';
export default ({ username, account }) => ({
id: `${config.url}/@${username}/publickey`,
type: 'Key',
owner: `${config.url}/@${username}`,
publicKeyPem: extractPublic((account as ILocalAccount).keypair)