Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Leaf 4692 - HOTFIX - no disabling users #2689

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
<?php
require_once 'globals.php';
require_once APP_PATH . '/Leaf/Db.php';

Check failure on line 3 in scripts/scheduled-task-commands/disableNationalOrgchartEmployees.php

View workflow job for this annotation

GitHub Actions / Lint Code Base

Constant APP_PATH not found.

Check failure on line 3 in scripts/scheduled-task-commands/disableNationalOrgchartEmployees.php

View workflow job for this annotation

GitHub Actions / Lint Code Base

Constant APP_PATH not found.
require_once APP_PATH . '/Leaf/VAMCActiveDirectory.php';

Check failure on line 4 in scripts/scheduled-task-commands/disableNationalOrgchartEmployees.php

View workflow job for this annotation

GitHub Actions / Lint Code Base

Constant APP_PATH not found.

Check failure on line 4 in scripts/scheduled-task-commands/disableNationalOrgchartEmployees.php

View workflow job for this annotation

GitHub Actions / Lint Code Base

Constant APP_PATH not found.

exit();
$startTime = microtime(true);

Check failure on line 6 in scripts/scheduled-task-commands/disableNationalOrgchartEmployees.php

View workflow job for this annotation

GitHub Actions / Lint Code Base

Unreachable statement - code above always terminates.

Check failure on line 6 in scripts/scheduled-task-commands/disableNationalOrgchartEmployees.php

View workflow job for this annotation

GitHub Actions / Lint Code Base

Unreachable statement - code above always terminates.

$national_db = new App\Leaf\Db(DIRECTORY_HOST, DIRECTORY_USER, DIRECTORY_PASS, 'national_orgchart');
$dir = new App\Leaf\VAMCActiveDirectory($national_db);
Expand Down
Loading