mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 10:02:05 +00:00
feat: Support create, read, delete variables in Public API (#10241)
This commit is contained in:
12
packages/cli/test/integration/shared/db/variables.ts
Normal file
12
packages/cli/test/integration/shared/db/variables.ts
Normal file
@@ -0,0 +1,12 @@
|
||||
import { VariablesRepository } from '@/databases/repositories/variables.repository';
|
||||
import { generateNanoId } from '@/databases/utils/generators';
|
||||
import { randomString } from 'n8n-workflow';
|
||||
import Container from 'typedi';
|
||||
|
||||
export async function createVariable(key = randomString(5), value = randomString(5)) {
|
||||
return await Container.get(VariablesRepository).save({ id: generateNanoId(), key, value });
|
||||
}
|
||||
|
||||
export async function getVariableOrFail(id: string) {
|
||||
return await Container.get(VariablesRepository).findOneOrFail({ where: { id } });
|
||||
}
|
||||
Reference in New Issue
Block a user