1
0

/namepspaces/{namespacesID}/users now also returns the user right

This commit is contained in:
kolaente
2018-09-17 19:39:14 +02:00
parent b1564659c4
commit cf6577445d
3 changed files with 6 additions and 7 deletions

View File

@ -18,3 +18,8 @@ type ListUser struct {
func (ListUser) TableName() string {
return "users_list"
}
type userWithRight struct {
User `xorm:"extends"`
Right UserRight `json:"right"`
}