Merge branch 'master'
[arvados-workbench2.git] / src / views-components / context-menu / action-sets / collection-files-item-action-set.ts
1 // Copyright (C) The Arvados Authors. All rights reserved.
2 //
3 // SPDX-License-Identifier: AGPL-3.0
4
5 import { ContextMenuActionSet } from "../context-menu-action-set";
6 import { RenameIcon, DownloadIcon, RemoveIcon } from "../../../components/icon/icon";
7
8
9 export const collectionFilesItemActionSet: ContextMenuActionSet = [[{
10     name: "Rename",
11     icon: RenameIcon,
12     execute: (dispatch, resource) => {
13         return;
14     }
15 },{
16     name: "Download",
17     icon: DownloadIcon,
18     execute: (dispatch, resource) => {
19         return;
20     }
21 },{
22     name: "Remove",
23     icon: RemoveIcon,
24     execute: (dispatch, resource) => {
25         return;
26     }
27 }]];