aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcrobibero <cody@robibe.ro>2020-04-19 12:06:18 -0600
committercrobibero <cody@robibe.ro>2020-04-19 12:06:18 -0600
commit86d68e23e7af367152edc36977a9a39431bd2641 (patch)
treeb5403339847ae5c3a353994fba23f2d43176b517
parent16401ec7ae078b2b7c4c65e3792cb4c4159490d2 (diff)
Add DisplayPreferencesController
-rw-r--r--Jellyfin.Api/Controllers/DisplayPreferencesController.cs11
1 files changed, 11 insertions, 0 deletions
diff --git a/Jellyfin.Api/Controllers/DisplayPreferencesController.cs b/Jellyfin.Api/Controllers/DisplayPreferencesController.cs
new file mode 100644
index 000000000..537a94046
--- /dev/null
+++ b/Jellyfin.Api/Controllers/DisplayPreferencesController.cs
@@ -0,0 +1,11 @@
+using Microsoft.AspNetCore.Mvc;
+
+namespace Jellyfin.Api.Controllers
+{
+ /// <summary>
+ /// Display Preferences Controller.
+ /// </summary>
+ public class DisplayPreferencesController : BaseJellyfinApiController
+ {
+ }
+}