include theme resources on server page load, add IUpgradeable interface to provide site-based versioning support
This commit is contained in:
@ -1,5 +1,3 @@
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
using Oqtane.Enums;
|
||||
using Oqtane.Models;
|
||||
|
||||
namespace Oqtane.Infrastructure
|
||||
|
11
Oqtane.Server/Infrastructure/Interfaces/IUpgradeable.cs
Normal file
11
Oqtane.Server/Infrastructure/Interfaces/IUpgradeable.cs
Normal file
@ -0,0 +1,11 @@
|
||||
using Oqtane.Models;
|
||||
|
||||
namespace Oqtane.Infrastructure
|
||||
{
|
||||
public interface IUpgradeable
|
||||
{
|
||||
string GetVersions(Alias alias);
|
||||
|
||||
bool Upgrade(Alias alias, string version);
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user