* start with group permissions implementation * refactor group dto stuff * adjustments to api as necessary from client * more api refactor for UserData * use implicit usings and file scoped namespaces * fix userpermissionsextensions * fix extenions * add more comparers * adjust comparers * remove admin stuff (tbd migration to discord bot) * adjust extensions * code style for api --------- Co-authored-by: rootdarkarchon <root.darkarchon@outlook.com>
39 lines
1.2 KiB
C#
39 lines
1.2 KiB
C#
using MareSynchronos.API.Data.Enum;
|
|
|
|
namespace MareSynchronos.API.Data.Extensions;
|
|
|
|
public static class GroupUserPermissionsExtensions
|
|
{
|
|
public static bool IsDisableAnimations(this GroupUserPermissions perm)
|
|
{
|
|
return perm.HasFlag(GroupUserPermissions.DisableAnimations);
|
|
}
|
|
|
|
public static bool IsDisableSounds(this GroupUserPermissions perm)
|
|
{
|
|
return perm.HasFlag(GroupUserPermissions.DisableSounds);
|
|
}
|
|
|
|
public static bool IsPaused(this GroupUserPermissions perm)
|
|
{
|
|
return perm.HasFlag(GroupUserPermissions.Paused);
|
|
}
|
|
|
|
public static void SetDisableAnimations(this ref GroupUserPermissions perm, bool set)
|
|
{
|
|
if (set) perm |= GroupUserPermissions.DisableAnimations;
|
|
else perm &= ~GroupUserPermissions.DisableAnimations;
|
|
}
|
|
|
|
public static void SetDisableSounds(this ref GroupUserPermissions perm, bool set)
|
|
{
|
|
if (set) perm |= GroupUserPermissions.DisableSounds;
|
|
else perm &= ~GroupUserPermissions.DisableSounds;
|
|
}
|
|
|
|
public static void SetPaused(this ref GroupUserPermissions perm, bool set)
|
|
{
|
|
if (set) perm |= GroupUserPermissions.Paused;
|
|
else perm &= ~GroupUserPermissions.Paused;
|
|
}
|
|
} |