blob: a4e992afb158f5f66e575dc0db9d37a550c427ae (
plain)
1
2
3
4
5
6
7
8
|
export const makeFeature = (changes = {}) => ({
name: 'Foo Feature',
description: 'Lorem ipsum Foo',
type: 'foo_scanning',
helpPath: '/help/foo',
configurationHelpPath: '/help/foo#configure',
...changes,
});
|