mirror of
https://github.com/Significant-Gravitas/AutoGPT.git
synced 2026-04-30 03:00:41 -04:00
- resolves - https://github.com/Significant-Gravitas/AutoGPT/issues/10511 In this PR, I’ve added backend endpoints and a frontend UI for edit functionality on the Agent Dashboard. Now, users can update their store submission, if status is `PENDING` or `APPROVED`, but not for `REJECTED` and `DRAFT`. When users make changes to a pending status submission, the changes are made to the same version. However, when users make changes to an approved status submission, a new store listing version is created. Backend works something like this: <img width="866" height="832" alt="Screenshot 2025-08-15 at 9 39 02 AM" src="https://github.com/user-attachments/assets/209c60ac-8350-43c1-ba4c-7378d95ecba7" /> ### Changes - I’ve updated the `StoreSubmission` view to include `video_url` and `categories`. - I’ve added a new frontend UI for editing submissions. - I’ve created an endpoint for editing submissions. - I’ve added more end-to-end tests to ensure the edit submission functionality works as expected. ### Checklist 📋 #### For code changes: - [x] I have clearly listed my changes in the PR description - [x] I have made a test plan - [x] I have tested my changes according to the test plan: - [x] I have checked manually, everything is working perfectly. - [x] All e2e tests are also passing. --------- Co-authored-by: Zamil Majdy <zamil.majdy@agpt.co> Co-authored-by: neo <neo.dowithless@gmail.com> Co-authored-by: Reinier van der Leer <pwuts@agpt.co> Co-authored-by: Swifty <craigswift13@gmail.com> Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> Co-authored-by: Ubbe <hi@ubbe.dev> Co-authored-by: Lluis Agusti <hi@llu.lu>
36 lines
819 B
Plaintext
36 lines
819 B
Plaintext
{
|
|
"submissions": [
|
|
{
|
|
"agent_id": "test-agent-id",
|
|
"agent_version": 1,
|
|
"name": "Test Agent",
|
|
"sub_heading": "Test agent subheading",
|
|
"slug": "test-agent",
|
|
"description": "Test agent description",
|
|
"image_urls": [
|
|
"test.jpg"
|
|
],
|
|
"date_submitted": "2023-01-01T00:00:00",
|
|
"status": "APPROVED",
|
|
"runs": 50,
|
|
"rating": 4.2,
|
|
"store_listing_version_id": null,
|
|
"version": null,
|
|
"reviewer_id": null,
|
|
"review_comments": null,
|
|
"internal_comments": null,
|
|
"reviewed_at": null,
|
|
"changes_summary": null,
|
|
"video_url": "test.mp4",
|
|
"categories": [
|
|
"test-category"
|
|
]
|
|
}
|
|
],
|
|
"pagination": {
|
|
"total_items": 1,
|
|
"total_pages": 1,
|
|
"current_page": 1,
|
|
"page_size": 20
|
|
}
|
|
} |