We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0c113ec commit dffa5a3Copy full SHA for dffa5a3
apps/sim/lib/uploads/contexts/workspace/workspace-file-manager.ts
@@ -153,7 +153,7 @@ export async function uploadWorkspaceFile(
153
url: serveUrl, // Use authenticated serve URL (enforces context)
154
key: uploadResult.key,
155
uploadedAt: new Date().toISOString(),
156
- expiresAt: new Date(Date.now() + 365 * 24 * 60 * 60 * 1000).toISOString(), // 1 year
+ expiresAt: new Date(Date.now() + 100 * 365 * 24 * 60 * 60 * 1000).toISOString(), // Far future date (effectively never expires)
157
context: 'workspace',
158
}
159
} catch (error) {
0 commit comments