Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Latest commit

 

History

History
 
 

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 

README.md

--8<-- "backend/apps/api/README.md"


Important Constraints

When contributing to the REST API, follow these rules to avoid breaking SDK generation:

1. Unique operationId

Each API endpoint must have a unique operationId in the OpenAPI spec. Duplicate operationIds will cause method conflicts in generated SDKs.

2. Stable Authentication Class Name

The authentication class in backend/apps/api/rest/auth/api_key.py must be named ApiKey.

  • The client's api_key parameter is automatically derived from this class name.
  • Do not rename this class.