mirror of
https://github.com/jellyfin/jellyfin.git
synced 2024-11-16 10:29:01 -07:00
12 lines
324 B
C#
12 lines
324 B
C#
using Microsoft.AspNetCore.Authorization;
|
|
|
|
namespace Jellyfin.Api.Auth.RequiresElevationPolicy
|
|
{
|
|
/// <summary>
|
|
/// The authorization requirement for requiring elevated privileges in the authorization handler.
|
|
/// </summary>
|
|
public class RequiresElevationRequirement : IAuthorizationRequirement
|
|
{
|
|
}
|
|
}
|