mirror of
https://github.com/Unleash/unleash.git
synced 2025-06-23 01:16:27 +02:00
* refactor: format files * refactor: add missing RE UI config flag * refactor: port admin auth index to TS/SWR * refactor: port GoogleAuth to TS/SWR * refactor: port OidcAuth to TS/SWR * refactor: port SamlAuth to TS/SWR * refactor: remove unused e-admin-auth store * refactor: make AutoCreateForm an explicit export * refactor: improve auth settings dir structure * refactor: destructure authenticationType from uiConfig * refactor: use setToastApiError to show errors * refactor: format files * refactor: remove invalid string fields from requests Co-authored-by: Fredrik Strand Oseberg <fredrik.no@gmail.com>
24 lines
649 B
TypeScript
24 lines
649 B
TypeScript
import { LibraryBooks } from '@material-ui/icons';
|
|
|
|
export const defaultValue = {
|
|
name: 'Unleash',
|
|
version: '3.x',
|
|
environment: '',
|
|
slogan: 'The enterprise ready feature toggle service.',
|
|
flags: { P: false, C: false, E: false, RE: false },
|
|
links: [
|
|
{
|
|
value: 'Documentation',
|
|
icon: LibraryBooks,
|
|
href: 'https://docs.getunleash.io/docs?source=oss',
|
|
title: 'User documentation',
|
|
},
|
|
{
|
|
value: 'GitHub',
|
|
icon: 'c_github',
|
|
href: 'https://github.com/Unleash',
|
|
title: 'Source code on GitHub',
|
|
},
|
|
],
|
|
};
|