mirror of
https://github.com/semaphoreui/semaphore.git
synced 2025-01-20 15:29:28 +01:00
feat(web): add app constants
This commit is contained in:
parent
c74fac3cb4
commit
528ba19751
@ -74,9 +74,30 @@ export const EXTRACT_VALUE_BODY_DATA_TYPE_ICONS = {
|
||||
};
|
||||
|
||||
export const APP_ICONS = {
|
||||
'': {},
|
||||
'': {
|
||||
icon: 'mdi-ansible',
|
||||
color: 'black',
|
||||
darkColor: 'white',
|
||||
},
|
||||
terraform: {
|
||||
icon: 'mdi-terraform',
|
||||
color: '#7b42bc',
|
||||
darkColor: '#7b42bc',
|
||||
},
|
||||
bash: {
|
||||
icon: 'mdi-bash',
|
||||
color: 'black',
|
||||
darkColor: 'white',
|
||||
},
|
||||
};
|
||||
|
||||
export const APP_TITLE = {
|
||||
'': '',
|
||||
'': 'Ansible Playbook',
|
||||
terraform: 'Terraform Code',
|
||||
bash: 'Bash Script',
|
||||
};
|
||||
|
||||
export const APP_INVENTORY_TITLE = {
|
||||
'': 'Ansible Inventory',
|
||||
terraform: 'Terraform Workspace',
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user