1
0
mirror of https://github.com/nolanlawson/pinafore synced 2025-02-08 15:38:53 +01:00
2018-02-11 14:11:03 -08:00

14 lines
414 B
JavaScript

import { updateInstanceInfo, updateVerifyCredentialsForInstance } from '../_actions/instances'
import { updateLists } from '../_actions/lists'
export function instanceObservers (store) {
store.observe('currentInstance', (currentInstance) => {
if (!currentInstance) {
return
}
updateVerifyCredentialsForInstance(currentInstance)
updateInstanceInfo(currentInstance)
updateLists()
})
}