1
0
Fork 0
mirror of https://gitlab.com/bramw/baserow.git synced 2025-04-30 15:20:01 +00:00

Implement order groups action

This commit is contained in:
Alexander Haller 2022-04-22 13:26:19 +00:00
parent e24dba35d1
commit 7d23f36dd7
11 changed files with 228 additions and 9 deletions
web-frontend/modules/core/plugins

View file

@ -223,6 +223,10 @@ export class RealTimeHandler {
}
})
this.registerEvent('groups_reordered', ({ store }, data) => {
store.dispatch('group/forceOrder', data.group_ids)
})
this.registerEvent('application_created', ({ store }, data) => {
store.dispatch('application/forceCreate', data.application)
})