Fixed the check for updates service Version upped to 5.1.12. Updated CHANGELOG.md
10 lines
No EOL
296 B
C#
10 lines
No EOL
296 B
C#
namespace EllieBot.Extensions;
|
|
|
|
public static class BotCredentialsExtensions
|
|
{
|
|
public static bool IsOwner(this IBotCreds creds, IUser user)
|
|
=> creds.IsOwner(user.Id);
|
|
|
|
public static bool IsOwner(this IBotCreds creds, ulong userId)
|
|
=> creds.OwnerIds.Contains(userId);
|
|
} |