mirror of
https://github.com/PluralKit/PluralKit.git
synced 2026-02-04 04:56:49 +00:00
11 lines
No EOL
421 B
C#
11 lines
No EOL
421 B
C#
namespace PluralKit.Core
|
|
{
|
|
public static class ModelExtensions
|
|
{
|
|
public static string NameFor(this PKMember member, LookupContext ctx) =>
|
|
member.NamePrivacy.CanAccess(ctx) ? member.Name : member.DisplayName ?? member.Name;
|
|
|
|
public static string AvatarFor(this PKMember member, LookupContext ctx) =>
|
|
member.AvatarPrivacy.CanAccess(ctx) ? member.AvatarUrl : null;
|
|
}
|
|
} |