pinafore/routes/_store/obsevers.js

7 wiersze
255 B
JavaScript
Czysty Zwykły widok Historia

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