1
0
mirror of https://github.com/Unleash/unleash.git synced 2024-10-18 20:09:08 +02:00
unleash.unleash/unleash-server/lib/featuresMock.js

23 lines
418 B
JavaScript
Raw Normal View History

2014-10-20 15:12:30 +02:00
module.exports = [
{
"name": "featureX",
"status": "on",
"strategy": "default"
},
{
"name": "featureY",
"status": "off",
"strategy": "baz",
"parameters": {
"foo": "bar"
}
},
{
"name": "featureZ",
"status": "on",
"strategy": "baz",
"parameters": {
"foo": "rab"
}
}
];