diff options
Diffstat (limited to 'server/lib/user.ts')
-rw-r--r-- | server/lib/user.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/server/lib/user.ts b/server/lib/user.ts index 2d7b36b4f..d54ffc916 100644 --- a/server/lib/user.ts +++ b/server/lib/user.ts | |||
@@ -1,11 +1,11 @@ | |||
1 | import * as Sequelize from 'sequelize' | 1 | import * as Sequelize from 'sequelize' |
2 | import { getActivityPubUrl } from '../helpers/activitypub' | ||
3 | import { createPrivateAndPublicKeys } from '../helpers/peertube-crypto' | 2 | import { createPrivateAndPublicKeys } from '../helpers/peertube-crypto' |
4 | import { database as db } from '../initializers' | 3 | import { database as db } from '../initializers' |
5 | import { CONFIG } from '../initializers/constants' | 4 | import { CONFIG } from '../initializers/constants' |
6 | import { UserInstance } from '../models' | 5 | import { UserInstance } from '../models' |
7 | import { createVideoChannel } from './video-channel' | 6 | import { createVideoChannel } from './video-channel' |
8 | import { logger } from '../helpers/logger' | 7 | import { logger } from '../helpers/logger' |
8 | import { getAccountActivityPubUrl } from '../helpers/activitypub' | ||
9 | 9 | ||
10 | async function createUserAccountAndChannel (user: UserInstance, validateUser = true) { | 10 | async function createUserAccountAndChannel (user: UserInstance, validateUser = true) { |
11 | const { account, videoChannel } = await db.sequelize.transaction(async t => { | 11 | const { account, videoChannel } = await db.sequelize.transaction(async t => { |
@@ -36,7 +36,7 @@ async function createUserAccountAndChannel (user: UserInstance, validateUser = t | |||
36 | } | 36 | } |
37 | 37 | ||
38 | async function createLocalAccountWithoutKeys (name: string, userId: number, applicationId: number, t: Sequelize.Transaction) { | 38 | async function createLocalAccountWithoutKeys (name: string, userId: number, applicationId: number, t: Sequelize.Transaction) { |
39 | const url = getActivityPubUrl('account', name) | 39 | const url = getAccountActivityPubUrl(name) |
40 | 40 | ||
41 | const accountInstance = db.Account.build({ | 41 | const accountInstance = db.Account.build({ |
42 | name, | 42 | name, |