Skip to content

Commit

Permalink
fix custom s3 integration
Browse files Browse the repository at this point in the history
  • Loading branch information
Brendonovich committed Jan 31, 2025
1 parent 8ccb474 commit 5b7856d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ export default function AppsTab() {
description:
"Connect your own S3 bucket. All new shareable link uploads will be uploaded here. Maintain complete ownership over your data.",
icon: IconLucideDatabase,
url: "/settings/apps/s3-config",
url: "/settings/integrations/s3-config",
pro: true,
},
];
Expand Down
2 changes: 1 addition & 1 deletion apps/desktop/src/utils/tauri.ts
Original file line number Diff line number Diff line change
Expand Up @@ -286,7 +286,7 @@ export type RequestStartRecording = null
export type RequestStopRecording = null
export type Resolution = { width: number; height: number }
export type S3UploadMeta = { id: string; user_id: string; aws_region?: string; aws_bucket?: string; aws_endpoint?: string }
export type ScreenCaptureTarget = ({ variant: "window" } & CaptureWindow) | ({ variant: "screen" } & CaptureScreen)
export type ScreenCaptureTarget = ({ variant: "window" } & CaptureWindow) | ({ variant: "screen" } & CaptureScreen) | ({ variant: "area" } & CaptureArea)
export type SegmentRecordings = { display: Video; camera: Video | null; audio: Audio | null }
export type SerializedEditorInstance = { framesSocketUrl: string; recordingDuration: number; savedProjectConfig: ProjectConfiguration; recordings: ProjectRecordings; path: string; prettyName: string }
export type SharingMeta = { id: string; link: string }
Expand Down

0 comments on commit 5b7856d

Please sign in to comment.