mirror of
https://iceshrimp.dev/iceshrimp/iceshrimp
synced 2024-12-24 03:28:11 +09:00
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)
|
||
|
});
|