public Task <Result> RemoveBan(string username, bool synchronizeWithServers)
        {
            string admin = Context.User.Identity.Name;

            return(_factorioServerManager.UnBanPlayer(username, admin, synchronizeWithServers));
        }