mirror of
https://github.com/n8n-io/n8n.git
synced 2025-01-11 04:47:29 -08:00
10f8c35dbb
Co-authored-by: ricardo <ricardoespinoza105@gmail.com>
11 lines
336 B
TypeScript
11 lines
336 B
TypeScript
import { Service } from 'typedi';
|
|
import { DataSource, Repository } from 'typeorm';
|
|
import { SharedCredentials } from '../entities/SharedCredentials';
|
|
|
|
@Service()
|
|
export class SharedCredentialsRepository extends Repository<SharedCredentials> {
|
|
constructor(dataSource: DataSource) {
|
|
super(SharedCredentials, dataSource.manager);
|
|
}
|
|
}
|