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/e735df5d0a4d89ba3e052cebfa153e31be4a0aae/Old/Ombi.Api.Interfaces/IAppveyorApi.cs You should set ROOT_URL correctly, otherwise the web may not work correctly.
Ombi/Old/Ombi.Api.Interfaces/IAppveyorApi.cs

9 lines
196 B

using Ombi.Api.Models.Appveyor;
namespace Ombi.Api.Interfaces
{
public interface IAppveyorApi
{
AppveyorProjects GetProjectHistory(string branchName, int records = 10);
}
}