/// <summary> /// Gets a new default mod privileges group. /// </summary> /// <param name="channel">The channel where this will be in.</param> /// <returns>The requested privileges.</returns> public static Entites.Privileges GetNewMod(Entites.Channel channel) { return(new Entites.Privileges("Moderator", false, channel, Rules.GetNewModRules())); }
/// <summary> /// Gets a new default user privileges group. /// </summary> /// <param name="channel">The channel where this will be in.</param> /// <returns>The requested privileges.</returns> public static Entites.Privileges GetNewUser(Entites.Channel channel) { return(new Entites.Privileges("User", true, channel, Rules.GetNewUserRules())); }