add sitemap generator which outputs all public pages and also includes an ISitemap interface for modules

This commit is contained in:
Shaun Walker
2023-02-20 08:35:46 -05:00
parent d1d00e6c98
commit 8c6c66fb11
7 changed files with 160 additions and 8 deletions

View 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);
}
}