ability to specify if a theme is enabled for a site
This commit is contained in:
@ -6,7 +6,9 @@ namespace Oqtane.Repository
|
||||
public interface IThemeRepository
|
||||
{
|
||||
IEnumerable<Theme> GetThemes();
|
||||
Theme GetTheme(int themeId, int siteId);
|
||||
void UpdateTheme(Theme theme);
|
||||
void DeleteTheme(int themeId);
|
||||
List<Theme> FilterThemes(List<Theme> themes);
|
||||
void DeleteTheme(string ThemeName);
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user