Closed flborn closed 3 weeks ago
The changes in this pull request primarily involve updates to the README.md
file, introducing a new section that describes the use of a REST API for managing categories in KiCad. This section replaces the previous instructions for adding categories through the admin backend and details various API endpoints for retrieving, adding, updating, and deleting categories. Additionally, the documentation has been restructured to reflect these changes, emphasizing API-driven interactions and updating related content on footprint parameter mapping.
File | Change Summary |
---|---|
README.md | Added a new section on using a REST API for category management, replacing admin backend instructions. Updated and restructured content on "Default Settings for Categories" and footprint parameter mapping. |
New API endpoints: GET /plugin/kicad-library-plugin/api/category/ , GET /plugin/kicad-library-plugin/api/category/<id>/ , POST /plugin/kicad-library-plugin/api/category/ , PATCH /plugin/kicad-library-plugin/api/category/<id>/ , DELETE /plugin/kicad-library-plugin/api/category/<id>/ . |
README.md
regarding the REST API for category management directly relate to the implementation of the REST API in the retrieved PR, which adds endpoints for managing categories in the KiCadLibraryPlugin.py
, serializers.py
, and viewsets.py
files.In the land of KiCad, where circuits do play,
A REST API blooms, brightening the way.
Categories now dance with a click and a call,
No more admin fuss, just API for all!
With endpoints aplenty, our joy's here to stay,
Hopping through code, we celebrate today! 🐇✨
Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media?
Thanks a lot!
Extended readme with REST API description
Summary by CodeRabbit
New Features
Documentation