You can now generate keys from the advanced settings interface
This commit is contained in:
parent
bfef3e93dc
commit
a10e0f0327
1 changed files with 2 additions and 9 deletions
|
@ -1,11 +1,10 @@
|
||||||
import PropTypes from 'prop-types';
|
import PropTypes from 'prop-types';
|
||||||
import React from 'react';
|
import React from 'react';
|
||||||
import { reduxForm } from 'redux-form';
|
import { connect } from 'react-redux';
|
||||||
import { bindActionCreators } from 'redux';
|
import { bindActionCreators } from 'redux';
|
||||||
import { browserHistory } from 'react-router';
|
import { browserHistory } from 'react-router';
|
||||||
import { Tab, Tabs, TabList, TabPanel } from 'react-tabs';
|
import { Tab, Tabs, TabList, TabPanel } from 'react-tabs';
|
||||||
import InlineSVG from 'react-inlinesvg';
|
import InlineSVG from 'react-inlinesvg';
|
||||||
import axios from 'axios';
|
|
||||||
import { Helmet } from 'react-helmet';
|
import { Helmet } from 'react-helmet';
|
||||||
import { updateSettings, initiateVerification, createApiKey, removeApiKey } from '../actions';
|
import { updateSettings, initiateVerification, createApiKey, removeApiKey } from '../actions';
|
||||||
import AccountForm from '../components/AccountForm';
|
import AccountForm from '../components/AccountForm';
|
||||||
|
@ -114,10 +113,4 @@ AccountView.propTypes = {
|
||||||
theme: PropTypes.string.isRequired
|
theme: PropTypes.string.isRequired
|
||||||
};
|
};
|
||||||
|
|
||||||
export default reduxForm({
|
export default connect(mapStateToProps, mapDispatchToProps)(AdvancedSettingsView);
|
||||||
form: 'updateAllSettings',
|
|
||||||
fields: ['username', 'email', 'currentPassword', 'newPassword'],
|
|
||||||
validate: validateSettings,
|
|
||||||
asyncValidate,
|
|
||||||
asyncBlurFields: ['username', 'email', 'currentPassword']
|
|
||||||
}, mapStateToProps, mapDispatchToProps)(AccountView);
|
|
||||||
|
|
Loading…
Reference in a new issue