pinafore/routes/_actions/postPrivacy.js

7 lines
162 B
JavaScript
Raw Normal View History

2018-03-03 14:15:50 -08:00
import { store } from '../_store/store'
export function setPostPrivacy (realm, postPrivacyKey) {
2018-03-03 14:51:48 -08:00
store.setComposeData(realm, {postPrivacy: postPrivacyKey})
2018-03-03 14:15:50 -08:00
}