event log UI improvements
This commit is contained in:
@ -5,7 +5,8 @@ namespace Oqtane.Repository
|
||||
{
|
||||
public interface ILogRepository
|
||||
{
|
||||
IEnumerable<Log> GetLogs(int SiteId, string Level, int Rows);
|
||||
Log GetLog(int LogId);
|
||||
void AddLog(Log Log);
|
||||
IEnumerable<Log> GetLogs(int SiteId);
|
||||
}
|
||||
}
|
||||
|
@ -10,6 +10,7 @@ namespace Oqtane.Repository
|
||||
PageModule AddPageModule(PageModule PageModule);
|
||||
PageModule UpdatePageModule(PageModule PageModule);
|
||||
PageModule GetPageModule(int PageModuleId);
|
||||
PageModule GetPageModule(int PageId, int ModuleId);
|
||||
void DeletePageModule(int PageModuleId);
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user