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
The API endpoints return internal objects, for example:
The endpoint to get all categories:
http://127.0.0.1:3000/v1/category
returns the struct Category:
pub struct Category { pub category_id: i64, pub name: String, pub num_torrents: i64, }
That's only one example.
That has some problems:
We could change it progressively or when we implement the API v2.
Category
The text was updated successfully, but these errors were encountered:
@da2ce7 and @WarmBeer any comments?
Sorry, something went wrong.
No branches or pull requests
The API endpoints return internal objects, for example:
The endpoint to get all categories:
http://127.0.0.1:3000/v1/category
returns the struct Category:
That's only one example.
That has some problems:
We could change it progressively or when we implement the API v2.
Subtasks
Category
from internal DB structures #501The text was updated successfully, but these errors were encountered: