pinafore/routes/_utils/storeObservers.js

7 lines
260 B
JavaScript
Raw Normal View History

2018-01-28 20:51:48 +00:00
import { updateVerifyCredentialsForInstance } from '../settings/instances/_actions/[instanceName]'
export function storeObservers(store) {
store.observe('currentInstance', (currentInstance) => {
updateVerifyCredentialsForInstance(currentInstance)
})
}