10 lines
319 B
TypeScript
10 lines
319 B
TypeScript
|
import config from '../../../../conf';
|
||
|
import { extractPublic } from '../../../../crypto_key';
|
||
|
import { ILocalAccount } from '../../../../models/user';
|
||
|
|
||
|
export default ({ username, account }) => ({
|
||
|
type: 'Key',
|
||
|
owner: `${config.url}/@${username}`,
|
||
|
publicKeyPem: extractPublic((account as ILocalAccount).keypair)
|
||
|
});
|