fixed autocomplete base collection keys caching

This commit is contained in:
Gani Georgiev
2022-11-18 13:32:32 +02:00
parent 341bcc4a0e
commit aed8367231
41 changed files with 175 additions and 160 deletions
+1 -1
View File
@@ -54,7 +54,7 @@ func (dao *Dao) FindCollectionByNameOrId(nameOrId string) (*models.Collection, e
// IsCollectionNameUnique checks that there is no existing collection
// with the provided name (case insensitive!).
//
// Note: case sensitive check because the name is used also as a table name for the records.
// Note: case insensitive check because the name is used also as a table name for the records.
func (dao *Dao) IsCollectionNameUnique(name string, excludeIds ...string) bool {
if name == "" {
return false