1
0
mirror of https://github.com/pocketbase/pocketbase.git synced 2025-11-29 16:58:00 +02:00

updated ui/dist and some lint warnings

This commit is contained in:
Gani Georgiev
2023-07-30 13:40:22 +03:00
parent ac1fd74942
commit bb4a5cfe83
47 changed files with 3421 additions and 3453 deletions

View File

@@ -137,19 +137,3 @@ func (p *plugin) getCachedCollections() (map[string]*models.Collection, error) {
return result, nil
}
func (p *plugin) hasCustomMigrations() bool {
files, err := os.ReadDir(p.config.Dir)
if err != nil {
return false
}
for _, f := range files {
if f.IsDir() {
continue
}
return true
}
return false
}