Fix missing attributes

This commit is contained in:
crobibero 2020-04-19 12:56:16 -06:00
parent 60607ab60c
commit e6b873f2ae

View file

@ -1,6 +1,9 @@
#nullable enable
using System;
using System.ComponentModel.DataAnnotations;
using System.Threading;
using MediaBrowser.Controller.Net;
using MediaBrowser.Controller.Persistence;
using MediaBrowser.Model.Entities;
using Microsoft.AspNetCore.Http;
@ -12,6 +15,7 @@ namespace Jellyfin.Api.Controllers
/// <summary>
/// Display Preferences Controller.
/// </summary>
[Authenticated]
public class DisplayPreferencesController : BaseJellyfinApiController
{
private readonly IDisplayPreferencesRepository _displayPreferencesRepository;