bulk import creation

This commit is contained in:
Vyacheslav.Sviridov
2022-06-26 21:09:48 +06:00
parent 91b643463f
commit bcc0a42f73
25 changed files with 813 additions and 86 deletions

View File

@@ -4,8 +4,8 @@ class ENM {
constructor(username, password, url) {
this.logoutUrl = '/logout'
this.loginUrl = `/login?IDToken1=${username}&IDToken2=${password}`
this.commands = null
this.choices = null
this.commands = []
this.choices = []
this.httpClient = axiosHttpClient(url)
}