Skip to content

Corrected schema of flags #31

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ You can then add the **override** panel to your app and turn individual features
The flag data that drives the feature flag service is a json format. Below is an example:
```json
[
{ "key": "...", "active": "...", "name": "...", "description": "..." },
{ "key": "...", "environments": {"...": true}, "name": "...", "description": "..." },
...
]
```
Expand All @@ -35,8 +35,8 @@ The flag data that drives the feature flag service is a json format. Below is an
<td>Unique key that is used from the markup to resolve whether a flag is active or not.</td>
</tr>
<tr>
<td><b>active</b></td>
<td>Boolean value for enabling/disabling the feature</td>
<td><b>environments</b></td>
<td>An object containing properties named after environment names with a true/false value for enabling/disabling the feature per environment</td>
</tr>
<tr>
<td><b>name</b></td>
Expand Down Expand Up @@ -72,7 +72,7 @@ var myApp = angular.module('app', ['feature-flags']);

myApp.config(function(featureFlagsProvider) {
featureFlagsProvider.setInitialFlags([
{ "key": "...", "active": "...", "name": "...", "description": "..." },
{ "key": "...", "environments": {"...": true}, "name": "...", "description": "..." },
]);
});
```
Expand Down