Added admin page navigation

This commit is contained in:
2025-01-14 12:46:47 +01:00
parent f0bc9e23b8
commit 313f6e046a
12 changed files with 211 additions and 42 deletions

View File

@@ -0,0 +1,6 @@
namespace HopFrame.Core.Services;
public interface IHopFrameAuthHandler {
public Task<bool> IsAuthenticatedAsync(string? policy);
public Task<string> GetCurrentUserDisplayNameAsync();
}