2018-02-09 01:51:48 +00:00
|
|
|
import { updateVerifyCredentialsForInstance } from '../_actions/instances'
|
|
|
|
import { updateLists } from '../_actions/lists'
|
2018-01-28 20:51:48 +00:00
|
|
|
|
2018-02-09 06:29:29 +00:00
|
|
|
export function observers (store) {
|
2018-01-28 20:51:48 +00:00
|
|
|
store.observe('currentInstance', (currentInstance) => {
|
2018-01-28 23:44:33 +00:00
|
|
|
if (currentInstance) {
|
|
|
|
updateVerifyCredentialsForInstance(currentInstance)
|
2018-02-09 01:51:48 +00:00
|
|
|
updateLists()
|
2018-01-28 23:44:33 +00:00
|
|
|
}
|
2018-01-28 20:51:48 +00:00
|
|
|
})
|
2018-02-09 06:29:29 +00:00
|
|
|
}
|