You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
631 B
24 lines
631 B
5 years ago
|
namespace Jellyfin.Api.Constants
|
||
5 years ago
|
{
|
||
|
/// <summary>
|
||
5 years ago
|
/// Constants for user roles used in the authentication and authorization for the API.
|
||
5 years ago
|
/// </summary>
|
||
5 years ago
|
public static class UserRoles
|
||
5 years ago
|
{
|
||
|
/// <summary>
|
||
|
/// Guest user.
|
||
|
/// </summary>
|
||
5 years ago
|
public const string Guest = "Guest";
|
||
5 years ago
|
|
||
|
/// <summary>
|
||
|
/// Regular user with no special privileges.
|
||
|
/// </summary>
|
||
5 years ago
|
public const string User = "User";
|
||
5 years ago
|
|
||
|
/// <summary>
|
||
|
/// Administrator user with elevated privileges.
|
||
|
/// </summary>
|
||
5 years ago
|
public const string Administrator = "Administrator";
|
||
5 years ago
|
}
|
||
|
}
|