pinafore/routes/_store/obsevers.js

9 wiersze
290 B
JavaScript

import { updateVerifyCredentialsForInstance } from '../settings/instances/_actions/[instanceName]'
export function observers(store) {
store.observe('currentInstance', (currentInstance) => {
if (currentInstance) {
updateVerifyCredentialsForInstance(currentInstance)
}
})
}