Skip to content

Commit

Permalink
Add method to FakeGitpodAPI
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrew Farries authored and roboquat committed May 17, 2022
1 parent a5b9ad0 commit dc80c45
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions components/public-api-server/pkg/apiv1/workspace_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -157,6 +157,10 @@ func (f *FakeGitpodAPI) GetWorkspace(ctx context.Context, id string) (res *gitpo
return w, nil
}

func (f *FakeGitpodAPI) GetOwnerToken(ctx context.Context, workspaceID string) (res string, err error) {
panic("implement me")
}

func (f *FakeGitpodAPI) AdminBlockUser(ctx context.Context, req *gitpod.AdminBlockUserRequest) (err error) {
panic("implement me")
}
Expand Down

0 comments on commit dc80c45

Please sign in to comment.