Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
import page from '@automattic/calypso-router';
import { makeLayout, render as clientRender, notFound } from 'calypso/controller';
import { navigation, siteSelection } from 'calypso/my-sites/controller';
import { siteSettings } from 'calypso/my-sites/site-settings/settings-controller';
import isJetpackSectionEnabledForSite from 'calypso/state/selectors/is-jetpack-section-enabled-for-site';
import { getSelectedSiteId } from 'calypso/state/ui/selectors';
import { jetpack } from './controller';
const notFoundIfNotEnabled = ( context, next ) => {
const state = context.store.getState();
const siteId = getSelectedSiteId( state );
const showJetpackSection = isJetpackSectionEnabledForSite( state, siteId );
if ( ! showJetpackSection ) {
return notFound( context, next );
}
next();
};
export default function () {
page(
'/settings/jetpack/:site_id',
siteSelection,
navigation,
siteSettings,
jetpack,
notFoundIfNotEnabled,
makeLayout,
clientRender
);
}