mirror of
https://github.com/n8n-io/n8n.git
synced 2025-03-05 20:50:17 -08:00
21 lines
531 B
TypeScript
21 lines
531 B
TypeScript
|
import type { Variables } from '@/databases/entities/Variables';
|
||
|
import { collections } from '@/Db';
|
||
|
|
||
|
export class VariablesService {
|
||
|
static async getAll(): Promise<Variables[]> {
|
||
|
return collections.Variables.find();
|
||
|
}
|
||
|
|
||
|
static async getCount(): Promise<number> {
|
||
|
return collections.Variables.count();
|
||
|
}
|
||
|
|
||
|
static async get(id: number): Promise<Variables | null> {
|
||
|
return collections.Variables.findOne({ where: { id } });
|
||
|
}
|
||
|
|
||
|
static async delete(id: number): Promise<void> {
|
||
|
await collections.Variables.delete(id);
|
||
|
}
|
||
|
}
|