feat: Creates custom attributes route (#2877)

This commit is contained in:
Sivin Varghese
2021-08-25 20:30:34 +05:30
committed by GitHub
parent 8d6b3efa2e
commit 4a23a393f7
7 changed files with 66 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
<template>
<div class="column content-box">
<woot-button
color-scheme="success"
class-names="button--fixed-right-top"
icon="ion-android-add-circle"
>
{{ $t('ATTRIBUTES_MGMT.HEADER_BTN_TXT') }}
</woot-button>
</div>
</template>
<script>
export default {};
</script>
<style></style>

View File

@@ -0,0 +1,30 @@
import SettingsContent from '../Wrapper';
import AttributesHome from './Index';
import { frontendURL } from '../../../../helper/URLHelper';
export default {
routes: [
{
path: frontendURL('accounts/:accountId/settings/attributes'),
component: SettingsContent,
props: {
headerTitle: 'ATTRIBUTES_MGMT.HEADER',
icon: 'ion-code',
showNewButton: false,
},
children: [
{
path: '',
name: 'attributes_wrapper',
redirect: 'list',
},
{
path: 'list',
name: 'attributes_list',
component: AttributesHome,
roles: ['administrator'],
},
],
},
],
};

View File

@@ -10,6 +10,7 @@ import profile from './profile/profile.routes';
import reports from './reports/reports.routes';
import campaigns from './campaigns/campaigns.routes';
import teams from './teams/teams.routes';
import attributes from './attributes/attributes.routes';
import store from '../../../store';
export default {
@@ -35,6 +36,7 @@ export default {
...reports.routes,
...teams.routes,
...campaigns.routes,
...attributes.routes,
...integrationapps.routes,
],
};