File size: 249 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 |
import config from '@automattic/calypso-config';
import page from '@automattic/calypso-router';
import { storeToken } from './controller';
export default () => {
if ( config.isEnabled( 'oauth' ) ) {
page( '/api/oauth/token', storeToken );
}
};
|