From 9705ec9c01db7725ac64908aeafcf7bd7cbfe69e Mon Sep 17 00:00:00 2001 From: Tino Fuhrmann Date: Mon, 1 Jun 2020 01:19:32 +0200 Subject: [PATCH] Remove NoAuthentication --- .../main/resources/typescript/auth/auth.mustache | 15 --------------- 1 file changed, 15 deletions(-) diff --git a/modules/openapi-generator/src/main/resources/typescript/auth/auth.mustache b/modules/openapi-generator/src/main/resources/typescript/auth/auth.mustache index 09d927066a0..d64eb2b2582 100644 --- a/modules/openapi-generator/src/main/resources/typescript/auth/auth.mustache +++ b/modules/openapi-generator/src/main/resources/typescript/auth/auth.mustache @@ -30,21 +30,6 @@ export abstract class SecurityAuthentication { } -/** - * Applies no authentication. - * - */ -export class NoAuthentication extends SecurityAuthentication { - - public constructor() { - super("_no_auth"); - } - - public applySecurityAuthentication(_context: RequestContext) { - - } -} - /** * Applies an api key to the request context. *