From 20d3acb8b1bdb2bc2e7eca089da3a0992e3764de Mon Sep 17 00:00:00 2001 From: Pascal Precht Date: Wed, 6 Mar 2019 12:02:07 +0100 Subject: [PATCH] uiux(@embark/authenticator): Change web backend to Cockpit --- packages/embark/src/lib/modules/authenticator/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/embark/src/lib/modules/authenticator/index.js b/packages/embark/src/lib/modules/authenticator/index.js index bf620768d..7b5fe4665 100644 --- a/packages/embark/src/lib/modules/authenticator/index.js +++ b/packages/embark/src/lib/modules/authenticator/index.js @@ -94,7 +94,7 @@ class Authenticator { this.events.setCommandHandler('authenticator:url:display', (firstOutput) => { if(!firstOutput) this.logger.info(__('Previous token has now been used.')); this.events.request('api:url', (apiUrl) => { - this.logger.info(__('Access the web backend with the following url: %s', (`${apiUrl}?token=${this.authToken}`.underline))); + this.logger.info(__('Enter the Cockpit with the following url: %s', (`${apiUrl}?token=${this.authToken}`.underline))); }); });