(ctx context.Context, arg database.UpdateWorkspaceProxyParams)
| 7944 | } |
| 7945 | |
| 7946 | func (q *querier) UpdateWorkspaceProxy(ctx context.Context, arg database.UpdateWorkspaceProxyParams) (database.WorkspaceProxy, error) { |
| 7947 | fetch := func(ctx context.Context, arg database.UpdateWorkspaceProxyParams) (database.WorkspaceProxy, error) { |
| 7948 | return q.db.GetWorkspaceProxyByID(ctx, arg.ID) |
| 7949 | } |
| 7950 | return updateWithReturn(q.log, q.auth, fetch, q.db.UpdateWorkspaceProxy)(ctx, arg) |
| 7951 | } |
| 7952 | |
| 7953 | func (q *querier) UpdateWorkspaceProxyDeleted(ctx context.Context, arg database.UpdateWorkspaceProxyDeletedParams) error { |
| 7954 | fetch := func(ctx context.Context, arg database.UpdateWorkspaceProxyDeletedParams) (database.WorkspaceProxy, error) { |
nothing calls this directly
no test coverage detected