8932a3352f39275f5bb3360a72171587f489f0f3
[arvados-workbench2.git] / src / models / link-account.ts
1 // Copyright (C) The Arvados Authors. All rights reserved.
2 //
3 // SPDX-License-Identifier: AGPL-3.0
4
5 export enum LinkAccountType {
6     ADD_OTHER_LOGIN,
7     ACCESS_OTHER_ACCOUNT
8 }
9
10 export interface AccountToLink {
11     type: LinkAccountType;
12     userUuid: string;
13     token: string;
14 }