features/configuration --> features/soapbox_config
This commit is contained in:
parent
83b799a3a1
commit
d6220565f9
3 changed files with 5 additions and 5 deletions
|
@ -42,7 +42,7 @@ const mapStateToProps = state => {
|
||||||
|
|
||||||
export default @connect(mapStateToProps)
|
export default @connect(mapStateToProps)
|
||||||
@injectIntl
|
@injectIntl
|
||||||
class ConfigSoapbox extends ImmutablePureComponent {
|
class SoapboxConfig extends ImmutablePureComponent {
|
||||||
|
|
||||||
static propTypes = {
|
static propTypes = {
|
||||||
soapbox: ImmutablePropTypes.map,
|
soapbox: ImmutablePropTypes.map,
|
|
@ -72,7 +72,7 @@ import {
|
||||||
LoginPage,
|
LoginPage,
|
||||||
Preferences,
|
Preferences,
|
||||||
EditProfile,
|
EditProfile,
|
||||||
ConfigSoapbox,
|
SoapboxConfig,
|
||||||
PasswordReset,
|
PasswordReset,
|
||||||
SecurityForm,
|
SecurityForm,
|
||||||
MfaForm,
|
MfaForm,
|
||||||
|
@ -255,7 +255,7 @@ class SwitchingColumnsArea extends React.PureComponent {
|
||||||
<Redirect exact from='/settings' to='/settings/preferences' />
|
<Redirect exact from='/settings' to='/settings/preferences' />
|
||||||
<WrappedRoute path='/settings/preferences' layout={LAYOUT.DEFAULT} component={Preferences} content={children} />
|
<WrappedRoute path='/settings/preferences' layout={LAYOUT.DEFAULT} component={Preferences} content={children} />
|
||||||
<WrappedRoute path='/settings/profile' layout={LAYOUT.DEFAULT} component={EditProfile} content={children} />
|
<WrappedRoute path='/settings/profile' layout={LAYOUT.DEFAULT} component={EditProfile} content={children} />
|
||||||
<WrappedRoute path='/admin' layout={LAYOUT.DEFAULT} component={ConfigSoapbox} content={children} />
|
<WrappedRoute path='/admin' layout={LAYOUT.DEFAULT} component={SoapboxConfig} content={children} />
|
||||||
|
|
||||||
<WrappedRoute layout={LAYOUT.EMPTY} component={GenericNotFound} content={children} />
|
<WrappedRoute layout={LAYOUT.EMPTY} component={GenericNotFound} content={children} />
|
||||||
</Switch>
|
</Switch>
|
||||||
|
|
|
@ -182,8 +182,8 @@ export function EditProfile() {
|
||||||
return import(/* webpackChunkName: "features/edit_profile" */'../../edit_profile');
|
return import(/* webpackChunkName: "features/edit_profile" */'../../edit_profile');
|
||||||
}
|
}
|
||||||
|
|
||||||
export function ConfigSoapbox() {
|
export function SoapboxConfig() {
|
||||||
return import(/* webpackChunkName: "features/configuration" */'../../configuration');
|
return import(/* webpackChunkName: "features/soapbox_config" */'../../soapbox_config');
|
||||||
}
|
}
|
||||||
|
|
||||||
export function PasswordReset() {
|
export function PasswordReset() {
|
||||||
|
|
Loading…
Reference in a new issue