add sitemap generator which outputs all public pages and also includes an ISitemap interface for modules
This commit is contained in:
12
Oqtane.Server/Modules/ISitemap.cs
Normal file
12
Oqtane.Server/Modules/ISitemap.cs
Normal file
@ -0,0 +1,12 @@
|
||||
using System.Collections.Generic;
|
||||
using Oqtane.Models;
|
||||
|
||||
namespace Oqtane.Modules
|
||||
{
|
||||
public interface ISitemap
|
||||
{
|
||||
// You Must Set The "ServerManagerType" In Your IModule Interface
|
||||
|
||||
List<Sitemap> GetUrls(string alias, string path, Module module);
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user