mirror of
https://github.com/status-im/consul.git
synced 2025-01-26 21:51:39 +00:00
9d21736e9f
* Add copyright headers to UI files * Ensure copywrite file ignores external libs
26 lines
320 B
JavaScript
26 lines
320 B
JavaScript
/**
|
|
* Copyright (c) HashiCorp, Inc.
|
|
* SPDX-License-Identifier: MPL-2.0
|
|
*/
|
|
|
|
export default {
|
|
id: 'auth-form-tabs',
|
|
initial: 'token',
|
|
on: {
|
|
TOKEN: [
|
|
{
|
|
target: 'token',
|
|
},
|
|
],
|
|
SSO: [
|
|
{
|
|
target: 'sso',
|
|
},
|
|
],
|
|
},
|
|
states: {
|
|
token: {},
|
|
sso: {},
|
|
},
|
|
};
|