Implemented proper mobile sidebar. Fixed mobile view of api key page. Removed unused exception

This commit is contained in:
2025-03-14 15:12:36 +01:00
parent f1c0d3b896
commit 3084bb268b
4 changed files with 21 additions and 32 deletions

View File

@@ -1,11 +0,0 @@
namespace Moonlight.ApiServer.Exceptions;
public class MissingPermissionException : Exception
{
public string Permission { get; set; }
public MissingPermissionException(string permission)
{
Permission = permission;
}
}