refactor(backend): use foundkey-js constants

This commit is contained in:
Johann150 2022-09-08 22:27:27 +02:00
parent 736c21a80a
commit aa62c1d7a7
Signed by untrusted user: Johann150
GPG key ID: 9EE6577A2A06F8F1
8 changed files with 8 additions and 8 deletions

View file

@ -1,5 +1,5 @@
import { Entity, Index, JoinColumn, Column, ManyToOne, PrimaryColumn } from 'typeorm';
import { mutedNoteReasons } from '@/types.js';
import { mutedNoteReasons } from 'foundkey-js';
import { id } from '../id.js';
import { Note } from './note.js';
import { User } from './user.js';

View file

@ -1,5 +1,5 @@
import { Entity, Index, JoinColumn, Column, PrimaryColumn, ManyToOne } from 'typeorm';
import { noteVisibilities } from '@/types.js';
import { noteVisibilities } from 'foundkey-js';
import { id } from '../id.js';
import { User } from './user.js';
import { DriveFile } from './drive-file.js';

View file

@ -1,5 +1,5 @@
import { Entity, Index, JoinColumn, ManyToOne, Column, PrimaryColumn } from 'typeorm';
import { notificationTypes } from '@/types.js';
import { notificationTypes } from 'foundkey-js';
import { id } from '../id.js';
import { User } from './user.js';
import { Note } from './note.js';

View file

@ -1,5 +1,5 @@
import { PrimaryColumn, Entity, Index, JoinColumn, Column, OneToOne } from 'typeorm';
import { noteVisibilities } from '@/types.js';
import { noteVisibilities } from 'foundkey-js';
import { id } from '../id.js';
import { Note } from './note.js';
import { User } from './user.js';

View file

@ -1,5 +1,5 @@
import { Entity, Column, Index, OneToOne, JoinColumn, PrimaryColumn } from 'typeorm';
import { ffVisibility, notificationTypes } from '@/types.js';
import { ffVisibility, notificationTypes } from 'foundkey-js';
import { id } from '../id.js';
import { User } from './user.js';
import { Page } from './page.js';

View file

@ -1,4 +1,4 @@
import { notificationTypes } from '@/types.js';
import { notificationTypes } from 'foundkey-js';
export const packedNotificationSchema = {
type: 'object',

View file

@ -1,6 +1,6 @@
import { Brackets } from 'typeorm';
import { notificationTypes } from 'foundkey-js';
import { Notifications, Followings, Mutings, Users, UserProfiles } from '@/models/index.js';
import { notificationTypes } from '@/types.js';
import read from '@/services/note/read.js';
import { readNotification } from '../../common/read-notification.js';
import define from '../../define.js';

View file

@ -1,5 +1,6 @@
import RE2 from 're2';
import * as mfm from 'mfm-js';
import { notificationTypes } from 'foundkey-js';
import { publishMainStream, publishUserEvent } from '@/services/stream.js';
import acceptAllFollowRequests from '@/services/following/requests/accept-all.js';
import { publishToFollowers } from '@/services/i/update.js';
@ -9,7 +10,6 @@ import { updateUsertags } from '@/services/update-hashtag.js';
import { Users, DriveFiles, UserProfiles, Pages } from '@/models/index.js';
import { User } from '@/models/entities/user.js';
import { UserProfile } from '@/models/entities/user-profile.js';
import { notificationTypes } from '@/types.js';
import { normalizeForSearch } from '@/misc/normalize-for-search.js';
import { langmap } from '@/misc/langmap.js';
import define from '../../define.js';