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 functionality to manage endpoints associated with a feature flag directly from the Admin Dashboard.
Manage Endpoints Button:
Endpoints Management Modal:
Add Endpoints Section:
API Integrations:
POST /feature_flags/{feature_flag_id}/endpoints:
["/api/new", "/api/another_new"]
{ "success": true, "message": "Endpoints added successfully", "data": { "feature_name": "Chat", "description": "Feature for chat operations", "uuid": "uuid-123", "endpoints": [ { "path": "/api/chat", "uuid": "uuid-ep-1" }, { "path": "/api/chat/:id", "uuid": "uuid-ep-2" }, { "path": "/api/new", "uuid": "uuid-ep-3" }, { "path": "/api/another_new", "uuid": "uuid-ep-4" } ] } }
PUT /feature_flags/{feature_flag_id}/endpoints/{endpoint_id}:
{ "new_endpoint_path": "/api/updated_endpoint" }
{ "success": true, "message": "Endpoint updated successfully", "data": { "feature_name": "Chat", "description": "Feature for chat operations", "uuid": "uuid-123", "endpoints": [ { "path": "/api/chat", "uuid": "uuid-ep-1" }, { "path": "/api/updated_endpoint", "uuid": "uuid-ep-2" } ] } }
DELETE /feature_flags/{feature_flag_id}/endpoints/{endpoint_id}:
{ "success": true, "message": "Endpoint deleted successfully" }
Dynamic UI Update:
Validation & Error Handling:
The text was updated successfully, but these errors were encountered:
I'm available
Sorry, something went wrong.
@tobi-bams @humansinstitute please assign me
@tobi-bams can I help
No branches or pull requests
Admin Dashboard - Manage Endpoints
Description:
Implement functionality to manage endpoints associated with a feature flag directly from the Admin Dashboard.
Deliverables:
Manage Endpoints Button:
Endpoints Management Modal:
Add Endpoints Section:
API Integrations:
POST /feature_flags/{feature_flag_id}/endpoints:
PUT /feature_flags/{feature_flag_id}/endpoints/{endpoint_id}:
DELETE /feature_flags/{feature_flag_id}/endpoints/{endpoint_id}:
Dynamic UI Update:
Validation & Error Handling:
Testing Checklist:
The text was updated successfully, but these errors were encountered: