2018-04-01 23:15:53 -05:00
|
|
|
import config from '../../../config';
|
2018-04-01 14:15:27 -05:00
|
|
|
import { extractPublic } from '../../../crypto_key';
|
|
|
|
import { ILocalUser } from '../../../models/user';
|
2018-04-01 05:18:36 -05:00
|
|
|
|
2018-04-01 14:01:34 -05:00
|
|
|
export default (user: ILocalUser) => ({
|
|
|
|
id: `${config.url}/@${user.username}/publickey`,
|
2018-04-01 05:18:36 -05:00
|
|
|
type: 'Key',
|
2018-04-01 14:01:34 -05:00
|
|
|
owner: `${config.url}/@${user.username}`,
|
|
|
|
publicKeyPem: extractPublic(user.account.keypair)
|
2018-04-01 05:18:36 -05:00
|
|
|
});
|