added active directory support to security groups
This commit is contained in:
@ -56,6 +56,7 @@ $Insert LSL_USERS_EQUATES
|
||||
$Insert EMAIL_BOX_EQUATES
|
||||
$Insert NOTES_QUEUE_EQUATES
|
||||
$Insert NOTIFICATION_EQUATES
|
||||
$Insert SEC_GROUPS_EQUATES
|
||||
|
||||
Declare function Database_Services, obj_Notes_Sent, Get_Status, Error_Services, Obj_Tables, Datetime, SRP_Datetime
|
||||
Declare function SRP_Array, Environment_Services, Logging_Services, RTI_CreateGuid, LSL_Users_Services
|
||||
@ -375,7 +376,11 @@ Service SendNotes()
|
||||
end
|
||||
end
|
||||
If RowExists('SEC_GROUPS', GroupID) then
|
||||
! Todo: Add SEC_GROUPS support
|
||||
GroupRec = Database_Services('ReadDataRow', 'SEC_GROUPS', GroupID)
|
||||
If Error_Services('NoError') then
|
||||
GroupUsers = GroupRec<SEC_GROUPS_USER$>
|
||||
SecGroupRecipients = GroupUsers
|
||||
end
|
||||
end
|
||||
GroupRecipients = SRP_Array('Join', NotifyGroupRecipients, GroupRecipients, 'OR', @VM)
|
||||
GroupRecipients = SRP_Array('Join', SecGroupRecipients, GroupRecipients, 'OR', @VM)
|
||||
|
Reference in New Issue
Block a user