Rename Acl to ACL (#52342)

* Rename Acl to ACL

* Fix yaml files

* Add xorm tags and fix test
This commit is contained in:
idafurjes
2022-07-18 15:14:58 +02:00
committed by GitHub
parent 8ff152f98f
commit f5cace8bbd
48 changed files with 397 additions and 395 deletions
+2 -2
View File
@@ -17,7 +17,7 @@ type Folder struct {
UpdatedBy int64
CreatedBy int64
HasAcl bool
HasACL bool
}
// NewFolder creates a new Folder
@@ -35,7 +35,7 @@ func DashboardToFolder(dash *Dashboard) *Folder {
Id: dash.Id,
Uid: dash.Uid,
Title: dash.Title,
HasAcl: dash.HasAcl,
HasACL: dash.HasACL,
Url: dash.GetUrl(),
Version: dash.Version,
Created: dash.Created,