summaryrefslogtreecommitdiff
path: root/src/remote
diff options
context:
space:
mode:
authorTakeshi Umeda <noel.yoshiba@gmail.com>2020-01-30 01:36:44 +0900
committerGitHub <noreply@github.com>2020-01-30 01:36:44 +0900
commit23f262c2e4ffe9063f837f82e3a9980a3af67582 (patch)
treee57cfc78243a02cb2b23ff9ab5b8b31d2764839b /src/remote
parentMerge pull request #5779 from syuilo/patch/autogen/v11 (diff)
downloadmisskey-23f262c2e4ffe9063f837f82e3a9980a3af67582.tar.gz
misskey-23f262c2e4ffe9063f837f82e3a9980a3af67582.tar.bz2
misskey-23f262c2e4ffe9063f837f82e3a9980a3af67582.zip
Add Group and Organization to validActor (#5784)
Diffstat (limited to 'src/remote')
-rw-r--r--src/remote/activitypub/type.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/remote/activitypub/type.ts b/src/remote/activitypub/type.ts
index 76d7ff59c9..59495d7891 100644
--- a/src/remote/activitypub/type.ts
+++ b/src/remote/activitypub/type.ts
@@ -99,7 +99,7 @@ interface IQuestionChoice {
_misskey_votes?: number;
}
-export const validActor = ['Person', 'Service'];
+export const validActor = ['Person', 'Service', 'Group', 'Organization'];
export interface IPerson extends IObject {
type: 'Person';