1
0
Fork 0
mirror of https://github.com/HenkKalkwater/harbour-sailfin.git synced 2025-09-05 18:22:46 +00:00

Implement nextUp endpoint and UI

* [UI] Added: The next up section now actually loads items
This commit is contained in:
Chris Josten 2020-10-10 16:26:08 +02:00
parent d3a7c17586
commit d6a1f431b4
3 changed files with 22 additions and 0 deletions

View file

@ -249,6 +249,7 @@ void registerModels(const char *URI) {
qmlRegisterType<UserItemModel>(URI, 1, 0, "UserItemModel");
qmlRegisterType<UserItemLatestModel>(URI, 1, 0, "UserItemLatestModel");
qmlRegisterType<UserItemResumeModel>(URI, 1, 0, "UserItemResumeModel");
qmlRegisterType<ShowNextUpModel>(URI, 1, 0, "ShowNextUpModel");
qmlRegisterType<ShowSeasonsModel>(URI, 1, 0, "ShowSeasonsModel");
qmlRegisterType<ShowEpisodesModel>(URI, 1, 0, "ShowEpisodesModel");
}