All checks were successful
BCards Deployment Pipeline / Run Tests (push) Successful in 4s
BCards Deployment Pipeline / PR Validation (push) Has been skipped
BCards Deployment Pipeline / Build and Push Image (push) Successful in 15m22s
BCards Deployment Pipeline / Deploy to Production (ARM - OCI) (push) Successful in 1m54s
BCards Deployment Pipeline / Deploy to Test (x86 - Local) (push) Has been skipped
BCards Deployment Pipeline / Cleanup Old Resources (push) Has been skipped
BCards Deployment Pipeline / Deployment Summary (push) Successful in 0s
🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
12 lines
275 B
C#
12 lines
275 B
C#
using System.Security.Claims;
|
|
|
|
namespace BCards.Web.Services
|
|
{
|
|
public interface IModerationAuthService
|
|
{
|
|
bool IsUserModerator(ClaimsPrincipal user);
|
|
bool IsEmailModerator(string email);
|
|
List<string> GetModeratorEmails();
|
|
}
|
|
}
|