feat: add services page

fix: change styles, fix hook trigger, add ux

feat: setup custom error messages

refactor: conform to new style guide

refactor: migrate to graphql

refactor: migrate to Ramda

fix: update state on mutation

refactor: migrate error ux to graphql

fix: change structure of accounts config

fix: use absolute imports

fix: move makeStyles out of components

fix: correct Strike behaviour
This commit is contained in:
Luis Félix 2020-01-10 14:26:51 +00:00 committed by Josh Harvey
parent 1dba321052
commit b9d2341cd1
30 changed files with 2579 additions and 306 deletions

View file

@ -8,6 +8,7 @@ import Locales from 'src/pages/Locales'
import Logs from 'src/pages/Logs'
import ServerLogs from 'src/pages/ServerLogs'
import Transactions from 'src/pages/Transactions/Transactions'
import Services from 'src/pages/Services/Services'
import AuthRegister from 'src/pages/AuthRegister'
const tree = [
@ -38,7 +39,12 @@ const tree = [
label: 'Commissions',
route: '/settings/commissions'
},
{ key: 'locale', label: 'Locale', route: '/settings/locale' }
{ key: 'locale', label: 'Locale', route: '/settings/locale' },
{
key: 'services',
label: '3rd party services',
route: '/settings/3rd-party-services'
}
]
}
// compliance: { label: 'Compliance', children: [{ label: 'Locale', route: '/locale' }] }
@ -65,6 +71,7 @@ const Routes = () => (
/>
<Route path="/settings/commissions" component={Commissions} />
<Route path="/settings/locale" component={Locales} />
<Route path="/settings/3rd-party-services" component={Services} />
<Route path="/maintenance/logs" component={Logs} />
<Route path="/maintenance/funding" component={Funding} />
<Route path="/maintenance/server-logs" component={ServerLogs} />