Skip to content

Commit

Permalink
Removes some google drive specific options to the plugin instance (#1794
Browse files Browse the repository at this point in the history
)
  • Loading branch information
kevgliss authored Nov 8, 2021
1 parent 9ef6592 commit 4886f10
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/dispatch/plugins/dispatch_google/drive/plugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,23 +28,23 @@ class GoogleDriveConfiguration(GoogleConfiguration):
"""Google drive configuration."""

root_id: str = Field(
title="Incident storage root folder id",
title="Root Incident Storage FolderId",
description="This is the default folder for all incident data. Dispatch will create subfolders for each incident in this folder.",
)

open_on_close: bool = Field(
title="Open on close",
title="Open On Close",
default=False,
description="Controls the visibility of resources on incident close. If enabled Dispatch will make all resources visible to the entire workspace.",
)


read_only: bool = Field(
title="Readonly",
default=True,
description="All incident resources will be marked as readonly on incident close. Participants will not be able to edit/copy/download any resources.",
)


@apply(timer, exclude=["__init__"])
@apply(counter, exclude=["__init__"])
class GoogleDriveStoragePlugin(StoragePlugin):
Expand Down

0 comments on commit 4886f10

Please sign in to comment.