features/configuration --> features/soapbox_config

This commit is contained in:
Alex Gleason 2020-08-23 15:16:04 -05:00
parent 83b799a3a1
commit d6220565f9
No known key found for this signature in database
GPG key ID: 7211D1F99744FBB7
3 changed files with 5 additions and 5 deletions

View file

@ -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,

View file

@ -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>

View file

@ -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() {