Files
vscode-front-matter/src/constants/Features.ts

25 lines
574 B
TypeScript

export const FEATURE_FLAG = {
panel: {
globalSettings: 'panel.globalSettings',
seo: 'panel.seo',
actions: 'panel.actions',
metadata: 'panel.metadata',
contentType: 'panel.contentType',
gitActions: 'panel.gitActions',
recentlyModified: 'panel.recentlyModified',
otherActions: 'panel.otherActions'
},
dashboard: {
snippets: {
view: 'dashboard.snippets.view',
manage: 'dashboard.snippets.manage'
},
data: {
view: 'dashboard.data.view'
},
taxonomy: {
view: 'dashboard.taxonomy.view'
}
}
};