diff options
Diffstat (limited to 'src/models/entities/follow-request.ts')
| -rw-r--r-- | src/models/entities/follow-request.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/models/entities/follow-request.ts b/src/models/entities/follow-request.ts index 22ec263962..e661c9933a 100644 --- a/src/models/entities/follow-request.ts +++ b/src/models/entities/follow-request.ts @@ -1,6 +1,6 @@ import { PrimaryColumn, Entity, Index, JoinColumn, Column, ManyToOne } from 'typeorm'; -import { User } from './user'; -import { id } from '../id'; +import { User } from './user.js'; +import { id } from '../id.js'; @Entity() @Index(['followerId', 'followeeId'], { unique: true }) |