Skip to content

feat: add VS code notifications for workspace actions #111

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

Merged
merged 17 commits into from
Jun 27, 2023
Merged
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/WorkspaceAction.ts
Co-authored-by: Asher <ash@coder.com>
  • Loading branch information
Kira-Pilot and code-asher authored Jun 27, 2023
commit 2d9e7f63cbf68f6f749e5224c2a22083cc85f302
2 changes: 1 addition & 1 deletion src/WorkspaceAction.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ interface NotifiedWorkspace {
type WithRequired<T, K extends keyof T> = T & Required<Pick<T, K>>

type WorkspaceWithDeadline = Workspace & { latest_build: WithRequired<WorkspaceBuild, "deadline"> }
type WorkspaceWithDeletingAt = Workspace & WithRequired<Workspace, "deleting_at">
type WorkspaceWithDeletingAt = WithRequired<Workspace, "deleting_at">

export class WorkspaceAction {
// We use this same interval in the Dashboard to poll for updates on the Workspaces page.
Expand Down