Skip to content

Commit

Permalink
feat(core): Migrate to n8n's typeorm fork (#8590)
Browse files Browse the repository at this point in the history
  • Loading branch information
netroy authored and cstuncsik committed Feb 17, 2024
1 parent b874f0c commit 44ee2c7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import type express from 'express';

import { Container } from 'typedi';
import type { FindOptionsWhere } from '@n8n/typeorm';
import { In, Like, QueryFailedError } from '@n8n/typeorm';
import { In, Like, Like, QueryFailedError } from '@n8n/typeorm';
import { v4 as uuid } from 'uuid';

import { ActiveWorkflowRunner } from '@/ActiveWorkflowRunner';
Expand Down
1 change: 1 addition & 0 deletions packages/cli/src/databases/repositories/user.repository.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ import type { ListQuery } from '@/requests';
import { type GlobalRole, User } from '../entities/User';
import { Project } from '../entities/Project';
import { ProjectRelation } from '../entities/ProjectRelation';

@Service()
export class UserRepository extends Repository<User> {
constructor(dataSource: DataSource) {
Expand Down

0 comments on commit 44ee2c7

Please sign in to comment.