Skip to content

pass headers to coder api #81

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 10 commits into from
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update src/commands.ts
Co-authored-by: Dean Sheather <dean@deansheather.com>
  • Loading branch information
Liorba and deansheather authored Apr 17, 2023
commit c2e6c2b6e08ba24e59f31fae6d04a2ae2d20e2a2
2 changes: 1 addition & 1 deletion src/commands.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ import { Storage } from "./storage"
import { WorkspaceTreeItem } from "./workspacesProvider"

export class Commands {

public constructor(private readonly vscodeProposed: typeof vscode, private readonly storage: Storage) {}

public async login(...args: string[]): Promise<void> {
let url: string | undefined = args.length >= 1 ? args[0] : undefined
if (!url) {
Expand Down