added option for ntlm authorization

This commit is contained in:
Christopher Pickering
2022-05-13 12:58:23 -05:00
parent 23ce7c6623
commit ef73af391f
8 changed files with 133 additions and 22 deletions

View File

@@ -3,13 +3,16 @@ BEGIN TRANSACTION;
ALTER TABLE monitor
ADD auth_method VARCHAR(250);
COMMIT
ALTER TABLE monitor
ADD auth_domain TEXT;
ALTER TABLE monitor
BEGIN TRANSACTION;
UPDATE monitor
SET auth_method = 'basic'
WHERE basic_auth_user is not null
ADD auth_workstation TEXT;
COMMIT;
BEGIN TRANSACTION;
UPDATE monitor
SET auth_method = 'basic'
WHERE basic_auth_user is not null;
COMMIT;