import * as types from '../../types' import { store, history } from '../../store' import { api, post, pad, preloadImage } from '../../util' import actions from '../../actions' import { session } from '../../session' export const setSiteTitle = title => dispatch => ( dispatch({ type: types.site.set_site_title, payload: title }) )