user picker should only include users from current org (#10845)

This commit is contained in:
Marcus Efraimsson
2018-02-09 10:42:37 +01:00
committed by Torkel Ödegaard
parent 864e2647db
commit a86f2fa34b
5 changed files with 67 additions and 13 deletions

View File

@ -95,7 +95,10 @@ type UpdateOrgUserCommand struct {
// QUERIES
type GetOrgUsersQuery struct {
OrgId int64
OrgId int64
Query string
Limit int
Result []*OrgUserDTO
}