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/6b7f33d725ab7ca1f8af72726d40c6563d8828e9/Ombi.Store/Models/Audit.cs
You should set ROOT_URL correctly, otherwise the web may not work correctly.
|
|
|
|
using System;
|
|
|
|
|
using Dapper.Contrib.Extensions;
|
|
|
|
|
|
|
|
|
|
namespace Ombi.Store.Models
|
|
|
|
|
{
|
|
|
|
|
[Table("Audit")]
|
|
|
|
|
public class Audit : Entity
|
|
|
|
|
{
|
|
|
|
|
public string Username{get;set;}
|
|
|
|
|
public DateTime Date {get;set;}
|
|
|
|
|
public string ChangeType {get;set;}
|
|
|
|
|
public string OldValue {get;set;}
|
|
|
|
|
public string NewValue{get;set;}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|