Add comment to default role in chronograf.go

pull/2220/head
Michael Desa 2017-11-03 09:51:41 -04:00
parent 3ddd253d68
commit a7ddb15c5c
1 changed files with 3 additions and 2 deletions

View File

@ -771,8 +771,9 @@ type LayoutsStore interface {
// Organization is a group of resources under a common name
type Organization struct {
ID uint64 `json:"id,string"`
Name string `json:"name"`
ID uint64 `json:"id,string"`
Name string `json:"name"`
// DefaultRole is the name of the role that is the default for any users added to the organization
DefaultRole string `json:"defaultRole,omitempty"`
}