2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-05-14 19:13:10 +00:00

Adds exchange backend settings to AdminCenter (#8042)

This commit is contained in:
Matthias Mair 2024-08-31 00:01:33 +02:00 committed by GitHub
parent cc45c23915
commit 4bf406b1c9
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -7,6 +7,7 @@ import { useCallback, useMemo, useState } from 'react';
import { api } from '../../../../App';
import { ActionButton } from '../../../../components/buttons/ActionButton';
import { FactCollection } from '../../../../components/settings/FactCollection';
import { GlobalSettingList } from '../../../../components/settings/SettingList';
import { ApiEndpoints } from '../../../../enums/ApiEndpoints';
import { useTable } from '../../../../hooks/UseTable';
import { apiUrl } from '../../../../states/ApiState';
@ -101,6 +102,10 @@ export default function CurrencyManagmentPanel() {
/>
<Divider />
<CurrencyTable setInfo={setInfo} />
<Divider />
<GlobalSettingList
keys={['CURRENCY_UPDATE_PLUGIN', 'CURRENCY_UPDATE_INTERVAL']}
/>
</Stack>
);
}