Skip to content

Commit

Permalink
minor: make read-only the default for cloud storage (#3275)
Browse files Browse the repository at this point in the history
  • Loading branch information
ciyer authored Sep 12, 2024
1 parent 51be011 commit 37ac515
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 @@ -148,5 +148,5 @@ export const EMPTY_CLOUD_STORAGE_DETAILS: CloudStorageDetails = {
name: undefined,
sourcePath: undefined,
mountPoint: undefined,
readOnly: undefined,
readOnly: true,
};
2 changes: 1 addition & 1 deletion tests/cypress/e2e/projectSettings.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -430,7 +430,7 @@ describe("Cloud storage settings page", () => {
const { name, readonly, target_path } = body;

expect(name).to.equal("fake-storage");
expect(readonly).to.be.false;
expect(readonly).to.be.true;
expect(target_path).to.equal("external_storage/fake-storage");
});

Expand Down

0 comments on commit 37ac515

Please sign in to comment.