This commit is contained in:
syuilo 2018-07-08 03:15:54 +09:00
parent a46d230308
commit ef58503537
5 changed files with 5 additions and 5 deletions

View file

@ -1,5 +1,5 @@
import { IUser, isLocalUser } from '../models/user';
import getAcct from './acct/render
import getAcct from './acct/render';
import getUserName from './get-user-name';
/**

View file

@ -4,7 +4,7 @@ import Note from '../../../../../models/note';
import Watching from '../../../../../models/note-watching';
import watch from '../../../../../services/note/watch';
import { publishNoteStream } from '../../../../../stream';
import notify from '../../../../../notify;
import notify from '../../../../../notify';
import { ILocalUser } from '../../../../../models/user';
/**

View file

@ -3,7 +3,7 @@ import Following from '../../models/following';
import FollowingLog from '../../models/following-log';
import FollowedLog from '../../models/followed-log';
import event from '../../stream';
import notify from '../../notify;
import notify from '../../notify';
import pack from '../../remote/activitypub/renderer';
import renderFollow from '../../remote/activitypub/renderer/follow';
import renderAccept from '../../remote/activitypub/renderer/accept';

View file

@ -1,6 +1,6 @@
import User, { isLocalUser, isRemoteUser, pack as packUser, IUser } from '../../../models/user';
import event from '../../../stream';
import notify from '../../../notify;
import notify from '../../../notify';
import pack from '../../../remote/activitypub/renderer';
import renderFollow from '../../../remote/activitypub/renderer/follow';
import { deliver } from '../../../queue';

View file

@ -2,7 +2,7 @@ import { IUser, isLocalUser, isRemoteUser } from '../../../models/user';
import Note, { INote } from '../../../models/note';
import NoteReaction from '../../../models/note-reaction';
import { publishNoteStream } from '../../../stream';
import notify from '../../../notify;
import notify from '../../../notify';
import NoteWatching from '../../../models/note-watching';
import watch from '../watch';
import renderLike from '../../../remote/activitypub/renderer/like';