mirror of
https://github.com/grafana/grafana.git
synced 2025-07-30 16:12:30 +08:00
Comments: support live comments in dashboards and annotations (#44980)
This commit is contained in:
@ -618,6 +618,10 @@ func (ss *SQLStore) GetSignedInUser(ctx context.Context, query *models.GetSigned
|
||||
return err
|
||||
}
|
||||
|
||||
func (ss *SQLStore) SearchUsers(ctx context.Context, query *models.SearchUsersQuery) error {
|
||||
return SearchUsers(ctx, query)
|
||||
}
|
||||
|
||||
func SearchUsers(ctx context.Context, query *models.SearchUsersQuery) error {
|
||||
query.Result = models.SearchUserQueryResult{
|
||||
Users: make([]*models.UserSearchHitDTO, 0),
|
||||
|
Reference in New Issue
Block a user