mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-18 02:21:13 +00:00
feat(core): Adjust comment to test an experiment (no-changelog) (#18824)
This commit is contained in:
@@ -42,7 +42,7 @@ export class DataStoreService {
|
|||||||
return await this.dataStoreRepository.createDataStore(projectId, dto.name, dto.columns);
|
return await this.dataStoreRepository.createDataStore(projectId, dto.name, dto.columns);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Currently only renames data stores
|
// Updates data store properties (currently limited to renaming)
|
||||||
async updateDataStore(dataStoreId: string, projectId: string, dto: UpdateDataStoreDto) {
|
async updateDataStore(dataStoreId: string, projectId: string, dto: UpdateDataStoreDto) {
|
||||||
await this.validateDataStoreExists(dataStoreId, projectId);
|
await this.validateDataStoreExists(dataStoreId, projectId);
|
||||||
await this.validateUniqueName(dto.name, projectId);
|
await this.validateUniqueName(dto.name, projectId);
|
||||||
|
|||||||
Reference in New Issue
Block a user