blob: 74ce72d78c8bbd7b84e5afef438e7958d0c1c73c (
plain)
1
2
3
4
5
6
7
8
9
|
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 })
)
|