aboutsummaryrefslogtreecommitdiffstats
path: root/src/features/basicAuth
diff options
context:
space:
mode:
authorLibravatar Markus Hatvan <markus_hatvan@aon.at>2021-10-14 23:32:05 +0200
committerLibravatar GitHub <noreply@github.com>2021-10-15 03:02:05 +0530
commit137555821f172e4eadc7cf099d4270ae8fc1374e (patch)
tree693882bbf7a6b2a24b5a727091d09586d0371007 /src/features/basicAuth
parentNew translations en-US.json (Spanish) (#2072) (diff)
downloadferdium-app-137555821f172e4eadc7cf099d4270ae8fc1374e.tar.gz
ferdium-app-137555821f172e4eadc7cf099d4270ae8fc1374e.tar.zst
ferdium-app-137555821f172e4eadc7cf099d4270ae8fc1374e.zip
chore: convert components to tsx (#2071)
Diffstat (limited to 'src/features/basicAuth')
-rw-r--r--src/features/basicAuth/index.ts (renamed from src/features/basicAuth/index.js)6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/features/basicAuth/index.js b/src/features/basicAuth/index.ts
index e43d51d15..149ab6c19 100644
--- a/src/features/basicAuth/index.js
+++ b/src/features/basicAuth/index.ts
@@ -1,4 +1,4 @@
1import { ipcRenderer } from 'electron'; 1import { AuthInfo, BrowserWindow, ipcRenderer } from 'electron';
2 2
3import BasicAuthComponent from './Component'; 3import BasicAuthComponent from './Component';
4 4
@@ -11,7 +11,7 @@ const state = ModalState;
11export default function initialize() { 11export default function initialize() {
12 debug('Initialize basicAuth feature'); 12 debug('Initialize basicAuth feature');
13 13
14 window.ferdi.features.basicAuth = { 14 window['ferdi'].features.basicAuth = {
15 state, 15 state,
16 }; 16 };
17 17
@@ -23,7 +23,7 @@ export default function initialize() {
23 }); 23 });
24} 24}
25 25
26export function mainIpcHandler(mainWindow, authInfo) { 26export function mainIpcHandler(mainWindow: BrowserWindow, authInfo: AuthInfo) {
27 debug('Sending basic auth call', authInfo); 27 debug('Sending basic auth call', authInfo);
28 28
29 mainWindow.webContents.send('feature:basic-auth-request', { 29 mainWindow.webContents.send('feature:basic-auth-request', {