Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Ombi/blame/commit/899934c3078a754b7ea1d6c4c27336ea31465cc1/Old/Ombi.Helpers/UserClaims.cs
You should set ROOT_URL correctly, otherwise the web may not work correctly.
|
|
|
|
namespace Ombi.Helpers
|
|
|
|
|
{
|
|
|
|
|
public class UserClaims
|
|
|
|
|
{
|
|
|
|
|
public const string Admin = nameof(Admin); // Can do everything including creating new users and editing settings
|
|
|
|
|
public const string PowerUser = nameof(PowerUser); // Can only manage the requests, approve etc.
|
|
|
|
|
public const string RegularUser = nameof(RegularUser); // Can only request
|
|
|
|
|
public const string ReadOnlyUser = nameof(ReadOnlyUser); // Can only view stuff
|
|
|
|
|
public const string Newsletter = nameof(Newsletter); // Has newsletter feature enabled
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|