* codegen fix * Return user role from the legacy store * Lint * Add tests, gen openapi * make generate * revert go.mod, go.sum, go.work.sum changes * Update go.mod and go.sum
9 lines
124 B
Go
9 lines
124 B
Go
package common
|
|
|
|
import "github.com/grafana/grafana/pkg/services/user"
|
|
|
|
type UserWithRole struct {
|
|
user.User
|
|
Role string
|
|
}
|