We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Implement the functionality to edit and update feature flags from the Admin Dashboard.
Update Button:
Edit Modal:
API Integration:
PUT /feature_flags/{id}
{ "name": "Updated Chat", "description": "Updated description for chat feature", "enabled": true }
{ "success": true, "message": "Feature flag updated successfully", "data": { "name": "Updated Chat", "description": "Updated description for chat feature", "enabled": true, "uuid": "uuid-123", "endpoints": [ { "path": "/api/chat", "uuid": "uuid-ep-1" }, { "path": "/api/chat/:id", "uuid": "uuid-ep-2" } ] } }
Dynamic UI Update:
Validation & Error Handling:
The text was updated successfully, but these errors were encountered:
@tobi-bams @humansinstitute please assign me
Sorry, something went wrong.
@tobi-bams can I help
No branches or pull requests
Admin Dashboard - Update Feature Flag
Description:
Implement the functionality to edit and update feature flags from the Admin Dashboard.
Deliverables:
Update Button:
Edit Modal:
API Integration:
PUT /feature_flags/{id}
with the updated details.Dynamic UI Update:
Validation & Error Handling:
Testing Checklist:
The text was updated successfully, but these errors were encountered: