mirror of
https://github.com/HenkKalkwater/harbour-sailfin.git
synced 2025-09-08 10:42:46 +00:00
WIP: Reimplementation of ListModels.
This commit is contained in:
parent
76a49868b9
commit
e421adf733
356 changed files with 1830 additions and 1833 deletions
|
@ -34,16 +34,16 @@ namespace Loader {
|
|||
namespace HTTP {
|
||||
|
||||
|
||||
GetMediaFolders::GetMediaFolders(ApiClient *apiClient)
|
||||
GetMediaFoldersLoader::GetMediaFoldersLoader(ApiClient *apiClient)
|
||||
: Jellyfin::Support::HttpLoader<Jellyfin::DTO::BaseItemDtoQueryResult, GetMediaFoldersParams>(apiClient) {}
|
||||
|
||||
QString GetMediaFolders::path(const GetMediaFoldersParams ¶ms) const {
|
||||
QString GetMediaFoldersLoader::path(const GetMediaFoldersParams ¶ms) const {
|
||||
Q_UNUSED(params) // Might be overzealous, but I don't like theses kind of warnings
|
||||
|
||||
return QStringLiteral("/Library/MediaFolders");
|
||||
}
|
||||
|
||||
QUrlQuery GetMediaFolders::query(const GetMediaFoldersParams ¶ms) const {
|
||||
QUrlQuery GetMediaFoldersLoader::query(const GetMediaFoldersParams ¶ms) const {
|
||||
Q_UNUSED(params) // Might be overzealous, but I don't like theses kind of warnings
|
||||
|
||||
QUrlQuery result;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue