NOS.Registration.AutoRegistrationPlugin.Configure C# (CSharp) Method

Configure() private method

private Configure ( string config ) : bool
config string
return bool
		bool Configure(string config)
		{
			var errors = _configuration.Parse(config ?? String.Empty, _pageRepository);

			errors.Each(x => _logger.Error(x, "SYSTEM"));

			return !errors.Any();
		}