Certificate/wireless plugins; major refactoring
Migrate much of BI to Services. Added Wireless Profile Provider plugin feature. Added Certificate Authority Provider plugin feature. Modified Certificate Provider plugin feature. Database migration v17, for Device Profiles. Enrolment Client Updated to support CA Certificates, Wireless Profiles and Hardware Info. New Client Enrolment Protocol to support new features. Plugin Manifest Generator added to main solution. Improved AD search performance.
This commit is contained in:
@@ -36,7 +36,7 @@ namespace Disco.Data.Configuration.Modules
|
||||
/// </summary>
|
||||
public bool SearchWildcardSuffixOnly
|
||||
{
|
||||
get { return Get(false); }
|
||||
get { return Get(true); }
|
||||
set { Set(value); }
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
using Disco.Data.Repository;
|
||||
using Disco.Models.BI.Job;
|
||||
using Disco.Models.Services.Job;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
@@ -59,13 +59,13 @@ namespace Disco.Data.Configuration.Modules
|
||||
|
||||
public LocationModes LocationMode
|
||||
{
|
||||
get { return Get<LocationModes>(LocationModes.Unrestricted); }
|
||||
get { return Get(LocationModes.Unrestricted); }
|
||||
set { Set(value); }
|
||||
}
|
||||
|
||||
public List<string> LocationList
|
||||
{
|
||||
get { return Get<List<string>>(new List<string>()); }
|
||||
get { return Get(new List<string>()); }
|
||||
set { Set(value); }
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user