Skip to content
GitLab
Explore
Projects
Groups
Topics
Snippets
Projects
Groups
Topics
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
fusiondirectory
fusiondirectory-integrator
Commits
e5449d30
Verified
Commit
e5449d30
authored
8 months ago
by
dockx thibault
Browse files
Options
Download
Patches
Plain Diff
Feat(Integrator) - Separation of orchestrator and potential CLI call
parent
703bc993
dev
main
1.2
2 merge requests
!52
:sparkles: Releasing Fusiondirectory Integrator 1.2
,
!42
Resolve "[Integrator] - AUDIT - Removal of audit after set period - new lib"
Pipeline
#29324
failed with stages
in 1 minute and 24 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/FusionDirectory/Audit/AuditLib.php
+15
-8
src/FusionDirectory/Audit/AuditLib.php
with
15 additions
and
8 deletions
+15
-8
src/FusionDirectory/Audit/AuditLib.php
+
15
−
8
View file @
e5449d30
...
@@ -11,14 +11,21 @@ use FusionDirectory\Ldap;
...
@@ -11,14 +11,21 @@ use FusionDirectory\Ldap;
class
AuditLib
class
AuditLib
{
{
private
string
$subTaskDN
,
$subTaskCN
;
private
int
$auditRetention
;
private
int
$auditRetention
;
private
?string
$subTaskDN
;
// Usage of CLI bool is to make sure we use proper method in case of direct CLI call. (Instead of Orchestrator).
private
?string
$subTaskCN
;
private
array
$auditList
;
private
array
$auditList
;
private
Ldap
\
Link
$ldapBind
;
private
?Ldap
\
Link
$ldapBind
;
private
object
$gateway
;
private
?object
$gateway
;
public
function
__construct
(
int
$auditRetention
,
array
$auditList
,
$gateway
=
NULL
,
string
$subTaskDN
=
NULL
,
string
$subTaskCN
=
NULL
,
$ldapBind
=
NULL
)
public
function
__construct
(
int
$auditRetention
,
array
$auditList
,
?object
$gateway
=
NULL
,
?string
$subTaskDN
=
NULL
,
?string
$subTaskCN
=
NULL
,
?Ldap
\
Link
$ldapBind
=
NULL
)
{
{
$this
->
auditRetention
=
$auditRetention
;
$this
->
auditRetention
=
$auditRetention
;
$this
->
subTaskDN
=
$subTaskDN
;
$this
->
subTaskDN
=
$subTaskDN
;
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment
Menu
Explore
Projects
Groups
Topics
Snippets