dict controller lint

This commit is contained in:
Timo Bejan 2020-11-02 23:14:19 +02:00
parent dc8d33a8a7
commit bf43f4567c

View File

@ -111,7 +111,7 @@ export class DictionaryControllerService {
}
// to determine the Accept header
let httpHeaderAccepts: string[] = [];
const httpHeaderAccepts: string[] = [];
const httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(
httpHeaderAccepts
);
@ -180,7 +180,7 @@ export class DictionaryControllerService {
}
// to determine the Accept header
let httpHeaderAccepts: string[] = [];
const httpHeaderAccepts: string[] = [];
const httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(
httpHeaderAccepts
);
@ -262,7 +262,7 @@ export class DictionaryControllerService {
}
// to determine the Accept header
let httpHeaderAccepts: string[] = [];
const httpHeaderAccepts: string[] = [];
const httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(
httpHeaderAccepts
);
@ -333,7 +333,7 @@ export class DictionaryControllerService {
}
// to determine the Accept header
let httpHeaderAccepts: string[] = [];
const httpHeaderAccepts: string[] = [];
const httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(
httpHeaderAccepts
);
@ -401,7 +401,7 @@ export class DictionaryControllerService {
}
// to determine the Accept header
let httpHeaderAccepts: string[] = ['*/*'];
const httpHeaderAccepts: string[] = ['*/*'];
const httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(
httpHeaderAccepts
);
@ -452,7 +452,7 @@ export class DictionaryControllerService {
}
// to determine the Accept header
let httpHeaderAccepts: string[] = ['application/json'];
const httpHeaderAccepts: string[] = ['application/json'];
const httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(
httpHeaderAccepts
);
@ -496,7 +496,7 @@ export class DictionaryControllerService {
}
// to determine the Accept header
let httpHeaderAccepts: string[] = ['application/json'];
const httpHeaderAccepts: string[] = ['application/json'];
const httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(
httpHeaderAccepts
);
@ -560,7 +560,7 @@ export class DictionaryControllerService {
}
// to determine the Accept header
let httpHeaderAccepts: string[] = ['application/json'];
const httpHeaderAccepts: string[] = ['application/json'];
const httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(
httpHeaderAccepts
);
@ -608,7 +608,7 @@ export class DictionaryControllerService {
}
// to determine the Accept header
let httpHeaderAccepts: string[] = ['*/*'];
const httpHeaderAccepts: string[] = ['*/*'];
const httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(
httpHeaderAccepts
);
@ -668,7 +668,7 @@ export class DictionaryControllerService {
}
// to determine the Accept header
let httpHeaderAccepts: string[] = [];
const httpHeaderAccepts: string[] = [];
const httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(
httpHeaderAccepts
);
@ -750,7 +750,7 @@ export class DictionaryControllerService {
}
// to determine the Accept header
let httpHeaderAccepts: string[] = [];
const httpHeaderAccepts: string[] = [];
const httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(
httpHeaderAccepts
);
@ -836,7 +836,7 @@ export class DictionaryControllerService {
}
// to determine the Accept header
let httpHeaderAccepts: string[] = [];
const httpHeaderAccepts: string[] = [];
const httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(
httpHeaderAccepts
);
@ -851,7 +851,7 @@ export class DictionaryControllerService {
let formParams: { append(param: string, value: any): void };
let useForm = false;
let convertFormParamsToString = false;
const convertFormParamsToString = false;
// use FormData to transmit files using content-type "multipart/form-data"
// see https://stackoverflow.com/questions/4007969/application-x-www-form-urlencoded-or-multipart-form-data
useForm = canConsumeForm;