When creating the ACUnits of type door in building the initial configuration, is there an ACProperty that we should pass to the properties field to make the doors “camera enabled”? We are unable to assign a camera onto a door. Currently we are passing null for this parameter. Passing null for the properties parameter matches the implementation of the Demo Access Control plugin project.
Our TypeConverter method looks like this:
// Doors
public static IEnumerable<ACUnit> ToACUnits(SGDoorBasicData door, string parentId)
{
var unsupportedCommands = new List<string>();
yield return new ACUnit(door.DoorId.ToString(), door.DoorName, ACBuiltInIconKeys.Door, null, TypeId.Door, parentId, unsupportedCommands) { IsEnabled = true };
}
All the checkboxes in the camera column are disabled as seen in the below screenshot and we cannot drag the camera over to assign.
