mirror of
https://github.com/HenkKalkwater/harbour-sailfin.git
synced 2025-09-05 10:12:46 +00:00
openapigen: support for 204 No Content endpoints
This commit is contained in:
parent
b257fe60aa
commit
77cb5d5957
66 changed files with 6169 additions and 84 deletions
|
@ -70,6 +70,20 @@ protected:
|
|||
QByteArray body(const GetExternalIdInfosParams& parameters) const override;
|
||||
QNetworkAccessManager::Operation operation() const override;
|
||||
};
|
||||
/**
|
||||
* @brief Applies search criteria to an item and refreshes metadata.
|
||||
*/
|
||||
|
||||
class ApplySearchCriteriaLoader : public Jellyfin::Support::HttpLoader<void, ApplySearchCriteriaParams> {
|
||||
public:
|
||||
explicit ApplySearchCriteriaLoader(ApiClient *apiClient = nullptr);
|
||||
|
||||
protected:
|
||||
QString path(const ApplySearchCriteriaParams& parameters) const override;
|
||||
QUrlQuery query(const ApplySearchCriteriaParams& parameters) const override;
|
||||
QByteArray body(const ApplySearchCriteriaParams& parameters) const override;
|
||||
QNetworkAccessManager::Operation operation() const override;
|
||||
};
|
||||
/**
|
||||
* @brief Get book remote search.
|
||||
*/
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue