mirror of
https://gitee.com/ccnetcore/Yi
synced 2026-03-10 11:40:52 +08:00
12 lines
313 B
C#
12 lines
313 B
C#
|
|
using Microsoft.AspNetCore.Http;
|
|||
|
|
using Volo.Abp.Users;
|
|||
|
|
|
|||
|
|
namespace Yi.Framework.AiHub.Domain.Extensions;
|
|||
|
|
|
|||
|
|
public static class CurrentExtensions
|
|||
|
|
{
|
|||
|
|
public static bool IsAiVip(this ICurrentUser currentUser)
|
|||
|
|
{
|
|||
|
|
return currentUser.Roles.Contains("YiXinAi-Vip") || currentUser.UserName == "cc";
|
|||
|
|
}
|
|||
|
|
}
|