Skip to content
Merged
Changes from all commits
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
6 changes: 3 additions & 3 deletions apps/api/src/app/api/desktop/version/route.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
const MINIMUM_DESKTOP_VERSION = "0.0.39";
const MINIMUM_DESKTOP_VERSION = "0.0.44";

/**
* Used to force the desktop app to update, in cases where we can't support
Expand All @@ -7,7 +7,7 @@ const MINIMUM_DESKTOP_VERSION = "0.0.39";
export async function GET() {
return Response.json({
minimumVersion: MINIMUM_DESKTOP_VERSION,
// Uncomment and customize when forcing an update:
// message: "We've upgraded our authentication system. Please update to continue.",
message:
"We've upgraded our authentication system. Please update to continue.",
});
}
Loading