mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2025-03-04 07:18:50 -07:00
9 lines
319 B
TypeScript
9 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)
|
|
});
|