15088: Saves account link data in session storage and logs out
[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     userToken: string;
13 }