mirror of
https://github.com/grafana/grafana.git
synced 2024-11-30 12:44:10 -06:00
861af4cb97
* enable ee build on pr/master * step1: of including group sync * disable commit pinning for now * fixes broken build * enable team to ldap group sync * avoid returning error for missing external handler * services: allow routes to be added before http server start * services: allows services to add their own migrations * moves db migrations to ee code base * build using master branch in ee * disable enterprise build in .bra.toml [skip ci] * removes team sync extensions * removes commented line
60 lines
988 B
Go
60 lines
988 B
Go
package models
|
|
|
|
import (
|
|
"errors"
|
|
"time"
|
|
)
|
|
|
|
// Typed errors
|
|
var (
|
|
ErrTeamMemberAlreadyAdded = errors.New("User is already added to this team")
|
|
)
|
|
|
|
// TeamMember model
|
|
type TeamMember struct {
|
|
Id int64
|
|
OrgId int64
|
|
TeamId int64
|
|
UserId int64
|
|
|
|
Created time.Time
|
|
Updated time.Time
|
|
}
|
|
|
|
// ---------------------
|
|
// COMMANDS
|
|
|
|
type AddTeamMemberCommand struct {
|
|
UserId int64 `json:"userId" binding:"Required"`
|
|
OrgId int64 `json:"-"`
|
|
TeamId int64 `json:"-"`
|
|
}
|
|
|
|
type RemoveTeamMemberCommand struct {
|
|
OrgId int64 `json:"-"`
|
|
UserId int64
|
|
TeamId int64
|
|
}
|
|
|
|
// ----------------------
|
|
// QUERIES
|
|
|
|
type GetTeamMembersQuery struct {
|
|
OrgId int64
|
|
TeamId int64
|
|
UserId int64
|
|
Result []*TeamMemberDTO
|
|
}
|
|
|
|
// ----------------------
|
|
// Projections and DTOs
|
|
|
|
type TeamMemberDTO struct {
|
|
OrgId int64 `json:"orgId"`
|
|
TeamId int64 `json:"teamId"`
|
|
UserId int64 `json:"userId"`
|
|
Email string `json:"email"`
|
|
Login string `json:"login"`
|
|
AvatarUrl string `json:"avatarUrl"`
|
|
}
|