Skip to content
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

Feature Toggle Admin Page: Implement backend API for GETting feature toggle state #70922

Open
mmandrus opened this issue Jun 29, 2023 · 0 comments

Comments

@mmandrus
Copy link
Contributor

mmandrus commented Jun 29, 2023

GET /api/featuremgmt/toggles
Returns a list of feature toggles, whether they are enabled, and whether they can be updated via the API
Sample response:

[{
	"toggle": "useCachingService",
	"enabled": false,
	"readOnly": true
}]
Endpointswill be guarded by access control middleware to ensure that only users with appropriate privileges can view and update feature toggles.

For the initial step, we should just return all feature toggles and their state. We can worry about filtering them afterwards.
@jcalisto jcalisto self-assigned this Jul 21, 2023
@mmandrus mmandrus changed the title Implement backend API for feature toggle management Implement backend API for GETting feature toggle state Jul 31, 2023
@mmandrus mmandrus changed the title Implement backend API for GETting feature toggle state Feature Toggle Admin Page: Implement backend API for GETting feature toggle state Jul 31, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

2 participants