From 8da00202f26e1886de4c7204dc87e32675bcc2f3 Mon Sep 17 00:00:00 2001 From: Mariusz Nowak Date: Fri, 21 Jan 2022 16:04:03 +0100 Subject: [PATCH] =?UTF-8?q?refactor:=20Rename=20`=E2=80=A6esources/resourc?= =?UTF-8?q?es/cognito-user-pool/lib/userPool.js`?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../aws/customResources/resources/cognito-user-pool/handler.js | 2 +- .../cognito-user-pool/lib/{userPool.js => user-pool.js} | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename lib/plugins/aws/customResources/resources/cognito-user-pool/lib/{userPool.js => user-pool.js} (100%) diff --git a/lib/plugins/aws/customResources/resources/cognito-user-pool/handler.js b/lib/plugins/aws/customResources/resources/cognito-user-pool/handler.js index 56d45ad77..f2c390b00 100644 --- a/lib/plugins/aws/customResources/resources/cognito-user-pool/handler.js +++ b/lib/plugins/aws/customResources/resources/cognito-user-pool/handler.js @@ -1,7 +1,7 @@ 'use strict'; const { addPermission, removePermission } = require('./lib/permissions'); -const { updateConfiguration, removeConfiguration, findUserPoolByName } = require('./lib/userPool'); +const { updateConfiguration, removeConfiguration, findUserPoolByName } = require('./lib/user-pool'); const { getEnvironment, getLambdaArn, handlerWrapper } = require('../utils'); async function handler(event, context) { diff --git a/lib/plugins/aws/customResources/resources/cognito-user-pool/lib/userPool.js b/lib/plugins/aws/customResources/resources/cognito-user-pool/lib/user-pool.js similarity index 100% rename from lib/plugins/aws/customResources/resources/cognito-user-pool/lib/userPool.js rename to lib/plugins/aws/customResources/resources/cognito-user-pool/lib/user-pool.js