Files
twenty/hasura/metadata/databases/default/tables/public_companies.yaml
Anders Borch b5cbf219e3 Add write permissions for user to people and companies
Add insert, update, delete permissions without any custom checks.

It is assumes that custom checks will be added as a part of the
workspace authorization ticket.
2023-04-24 11:53:28 +02:00

42 lines
752 B
YAML

table:
name: companies
schema: public
insert_permissions:
- role: user
permission:
check: {}
columns:
- id
- workspace_id
- company_domain
- company_name
- created_at
- updated_at
select_permissions:
- role: user
permission:
columns:
- id
- workspace_id
- company_domain
- company_name
- created_at
- updated_at
filter: {}
update_permissions:
- role: user
permission:
columns:
- id
- workspace_id
- company_domain
- company_name
- created_at
- updated_at
filter: {}
check: {}
delete_permissions:
- role: user
permission:
filter: {}