feat(core): Adjust comment to test an experiment (no-changelog) (#18824)

This commit is contained in:
Nikhil Kuriakose
2025-08-27 21:19:32 +02:00
committed by GitHub
parent bc9697d9ef
commit 3258a65bdb

View File

@@ -42,7 +42,7 @@ export class DataStoreService {
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) {
await this.validateDataStoreExists(dataStoreId, projectId);
await this.validateUniqueName(dto.name, projectId);