13 lines
304 B
C#
13 lines
304 B
C#
using DysonNetwork.Shared.Models;
|
|
using Microsoft.AspNetCore.Mvc;
|
|
|
|
namespace DysonNetwork.Zone.SEO;
|
|
|
|
public static class SnPostExtensions
|
|
{
|
|
public static string AsUrl(this SnPost post, string host, string scheme)
|
|
{
|
|
return $"{scheme}://{host}/p/{post.Slug ?? post.Id.ToString()}";
|
|
}
|
|
}
|