Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Ombi/src/commit/560072eba4ad06fb0c5c6592d3c652f89f77fc38/Old/Ombi.Core/Users/IUserHelper.cs You should set ROOT_URL correctly, otherwise the web may not work correctly.
Ombi/Old/Ombi.Core/Users/IUserHelper.cs

13 lines
404 B

using System.Collections.Generic;
using Ombi.Helpers.Permissions;
namespace Ombi.Core.Users
{
public interface IUserHelper
{
IEnumerable<UserHelperModel> GetUsers();
IEnumerable<UserHelperModel> GetUsersWithPermission(Permissions permission);
IEnumerable<UserHelperModel> GetUsersWithFeature(Features feature);
UserHelperModel GetUser(string username);
}
}