0
0
mirror of https://github.com/go-gitea/gitea.git synced 2026-04-05 16:24:55 +02:00

rename DisplayName -> FullName for consistency

This commit is contained in:
☙◦ The Tablet ❀ GamerGirlandCo ◦❧ 2024-12-27 21:44:47 -05:00
parent a575f9390e
commit 22118316ec
No known key found for this signature in database
GPG Key ID: 924A5F6AF051E87C

View File

@ -18,7 +18,7 @@ type Group struct {
Owner *user_model.User `xorm:"-"`
LowerName string `xorm:"UNIQUE(s) INDEX NOT NULL"`
Name string `xorm:"INDEX NOT NULL"`
DisplayName string `xorm:"TEXT"`
FullName string `xorm:"TEXT"` // displayed in places like navigation menus
Description string `xorm:"TEXT"`
Avatar string `xorm:"VARCHAR(64)"`