mirror of
https://github.com/estruyf/vscode-front-matter.git
synced 2026-03-28 17:42:40 +01:00
25 lines
574 B
TypeScript
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'
|
|
}
|
|
}
|
|
};
|