aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/initializers/constants.ts
diff options
context:
space:
mode:
Diffstat (limited to 'server/initializers/constants.ts')
-rw-r--r--server/initializers/constants.ts6
1 files changed, 4 insertions, 2 deletions
diff --git a/server/initializers/constants.ts b/server/initializers/constants.ts
index 10f95f5ab..190fd427a 100644
--- a/server/initializers/constants.ts
+++ b/server/initializers/constants.ts
@@ -14,7 +14,7 @@ import { CONFIG, registerConfigChangedHandler } from './config'
14 14
15// --------------------------------------------------------------------------- 15// ---------------------------------------------------------------------------
16 16
17const LAST_MIGRATION_VERSION = 440 17const LAST_MIGRATION_VERSION = 445
18 18
19// --------------------------------------------------------------------------- 19// ---------------------------------------------------------------------------
20 20
@@ -459,7 +459,9 @@ const ACTIVITY_PUB = {
459const ACTIVITY_PUB_ACTOR_TYPES: { [ id: string ]: ActivityPubActorType } = { 459const ACTIVITY_PUB_ACTOR_TYPES: { [ id: string ]: ActivityPubActorType } = {
460 GROUP: 'Group', 460 GROUP: 'Group',
461 PERSON: 'Person', 461 PERSON: 'Person',
462 APPLICATION: 'Application' 462 APPLICATION: 'Application',
463 ORGANIZATION: 'Organization',
464 SERVICE: 'Service'
463} 465}
464 466
465const HTTP_SIGNATURE = { 467const HTTP_SIGNATURE = {