DeleteUser delegates to the transport-agnostic service layer. Resolver is a thin transport adapter. Permissions: authorizer:admin
(ctx context.Context, params *model.DeleteUserRequest)
| 13 | // |
| 14 | // Permissions: authorizer:admin |
| 15 | func (g *graphqlProvider) DeleteUser(ctx context.Context, params *model.DeleteUserRequest) (*model.Response, error) { |
| 16 | gc, _ := utils.GinContextFromContext(ctx) |
| 17 | res, _, err := g.adminService().DeleteUser(ctx, service.MetaFromGin(gc), params) |
| 18 | return res, err |
| 19 | } |
nothing calls this directly
no test coverage detected