owner-names-and-updated-navigating-on-data-explorer-name
[arvados-workbench2.git] / src / store / owner-name / owner-name-actions.ts
1 // Copyright (C) The Arvados Authors. All rights reserved.
2 //
3 // SPDX-License-Identifier: AGPL-3.0
4
5 import { unionize, ofType, UnionOf } from '~/common/unionize';
6
7 export const ownerNameActions = unionize({
8     SET_OWNER_NAME: ofType<OwnerNameState>()
9 });
10
11 interface OwnerNameState {
12     name: string;
13     uuid: string;
14 }
15
16 export type OwnerNameAction = UnionOf<typeof ownerNameActions>;