Init collection-files context menus
[arvados-workbench2.git] / src / views-components / context-menu / action-sets / collection-files-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
7
8 export const collectionFilesActionSet: ContextMenuActionSet = [[{
9     name: "Select all",
10     execute: (dispatch, resource) => {
11         return;
12     }
13 },{
14     name: "Unselect all",
15     execute: (dispatch, resource) => {
16         return;
17     }
18 },{
19     name: "Remove selected",
20     execute: (dispatch, resource) => {
21         return;
22     }
23 },{
24     name: "Download selected",
25     execute: (dispatch, resource) => {
26         return;
27     }
28 },{
29     name: "Create a new collection with selected",
30     execute: (dispatch, resource) => {
31         return;
32     }
33 }]];