1
0
Fork 0
mirror of https://gitlab.com/bramw/baserow.git synced 2025-05-20 07:29:36 +00:00

Moved the permissions and roles store to the groups store

This commit is contained in:
Bram Wiepjes 2022-11-02 11:55:27 +00:00
parent 4b36246cef
commit ef78dbc587
78 changed files with 1068 additions and 390 deletions
web-frontend/modules/database/components/row

View file

@ -13,6 +13,7 @@
:read-only="false"
:row="row"
:table="table"
:database="database"
:can-modify-fields="canModifyFields"
@field-updated="$emit('field-updated', $event)"
@field-deleted="$emit('field-deleted')"
@ -35,6 +36,7 @@
:read-only="false"
:row="row"
:table="table"
:database="database"
:can-modify-fields="canModifyFields"
@field-updated="$emit('field-updated', $event)"
@field-deleted="$emit('field-deleted')"
@ -74,6 +76,10 @@ export default {
},
mixins: [modal, error],
props: {
database: {
type: Object,
required: true,
},
table: {
type: Object,
required: true,