Skip to content
This repository was archived by the owner on Feb 22, 2024. It is now read-only.

Hubert / Allowing VRDW and DW to login #6619

Merged
merged 1 commit into from
Jun 23, 2021
Merged
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
2 changes: 1 addition & 1 deletion src/javascript/_common/base/client_base.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ const ClientBase = (() => {

const isValidLoginid = () => {
if (!isLoggedIn()) return true;
const valid_login_ids = new RegExp('^(MX|MF|VRTC|MLT|CR|FOG)[0-9]+$', 'i');
const valid_login_ids = new RegExp('^(MX|MF|VRTC|MLT|CR|FOG|VRDW|DW)[0-9]+$', 'i');
return getAllLoginids().every(loginid => valid_login_ids.test(loginid));
};

Expand Down