mirror of
https://github.com/Unleash/unleash.git
synced 2025-06-04 01:18:20 +02:00
* feat: add billing page to admin * some adjustments to billing page * add BillingHistory, remove invoices, misc improvements * refactor based on instanceStatus logic, add dialog * fix: cleanup * some refactoring and alignment with figma * add extend, isBilling, refactoring and misc improvements * fix: update tests * refactor: reorganize billing into smaller components, misc improvements * add STRIPE flag, some refactoring and adapting to comments and discussion * adapt BillingHistory slightly, refactor TextCell * Update src/hooks/api/getters/useInstanceStatus/useInstanceStatus.ts Co-authored-by: Tymoteusz Czech <2625371+Tymek@users.noreply.github.com> * refactor: address PR comments * fix: adjust divider color * fix: update snaps * refactor: address PR comments * fix: update snaps * fix: amountFormatted typo Co-authored-by: Tymoteusz Czech <2625371+Tymek@users.noreply.github.com> Co-authored-by: Fredrik Strand Oseberg <fredrik.no@gmail.com>
34 lines
793 B
TypeScript
34 lines
793 B
TypeScript
import { LibraryBooks } from '@mui/icons-material';
|
|
|
|
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,
|
|
EEA: false,
|
|
CO: false,
|
|
SE: false,
|
|
T: false,
|
|
UNLEASH_CLOUD: 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',
|
|
},
|
|
],
|
|
};
|