feat: ✨ Support for _misskey_summary
Co-authored-by: kakkokari-gtyih <daisho7308+f@gmail.com> ref: https://github.com/misskey-dev/misskey/pull/12184
This commit is contained in:
parent
3b3320d532
commit
981165ae8b
4 changed files with 6 additions and 1 deletions
|
@ -313,7 +313,9 @@ export async function createPerson(
|
||||||
await transactionalEntityManager.save(
|
await transactionalEntityManager.save(
|
||||||
new UserProfile({
|
new UserProfile({
|
||||||
userId: user.id,
|
userId: user.id,
|
||||||
description: person.summary
|
description: person._misskey_summary
|
||||||
|
? truncate(person._misskey_summary, summaryLength)
|
||||||
|
: person.summary
|
||||||
? htmlToMfm(truncate(person.summary, summaryLength), person.tag)
|
? htmlToMfm(truncate(person.summary, summaryLength), person.tag)
|
||||||
: null,
|
: null,
|
||||||
url: url,
|
url: url,
|
||||||
|
|
|
@ -43,6 +43,7 @@ export const renderActivity = (x: any): IActivity | null => {
|
||||||
_misskey_talk: "misskey:_misskey_talk",
|
_misskey_talk: "misskey:_misskey_talk",
|
||||||
_misskey_reaction: "misskey:_misskey_reaction",
|
_misskey_reaction: "misskey:_misskey_reaction",
|
||||||
_misskey_votes: "misskey:_misskey_votes",
|
_misskey_votes: "misskey:_misskey_votes",
|
||||||
|
_misskey_summary: "misskey:_misskey_summary",
|
||||||
isCat: "misskey:isCat",
|
isCat: "misskey:isCat",
|
||||||
// Fedibird
|
// Fedibird
|
||||||
fedibird: "http://fedibird.com/ns#",
|
fedibird: "http://fedibird.com/ns#",
|
||||||
|
|
|
@ -74,6 +74,7 @@ export async function renderPerson(user: ILocalUser) {
|
||||||
summary: profile.description
|
summary: profile.description
|
||||||
? toHtml(mfm.parse(profile.description))
|
? toHtml(mfm.parse(profile.description))
|
||||||
: null,
|
: null,
|
||||||
|
_misskey_summary: profile.description,
|
||||||
icon: avatar ? renderImage(avatar) : null,
|
icon: avatar ? renderImage(avatar) : null,
|
||||||
image: banner ? renderImage(banner) : null,
|
image: banner ? renderImage(banner) : null,
|
||||||
tag,
|
tag,
|
||||||
|
|
|
@ -205,6 +205,7 @@ export interface IActor extends IObject {
|
||||||
};
|
};
|
||||||
"vcard:bday"?: string;
|
"vcard:bday"?: string;
|
||||||
"vcard:Address"?: string;
|
"vcard:Address"?: string;
|
||||||
|
_misskey_summary?: string;
|
||||||
}
|
}
|
||||||
|
|
||||||
export const isCollection = (object: IObject): object is ICollection =>
|
export const isCollection = (object: IObject): object is ICollection =>
|
||||||
|
|
Loading…
Reference in a new issue