Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: Grant column permissions for demoUser on the operations table #3882

Merged
merged 2 commits into from
Oct 31, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 17 additions & 2 deletions hasura.planx.uk/metadata/tables.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -589,6 +589,7 @@
- role: demoUser
permission:
columns:
- analytics_link
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

image

Once I fixed the issue with missing column permissions on operations, I then hit this one.

- created_at
- creator_id
- data
Expand Down Expand Up @@ -1076,7 +1077,14 @@
flow:
creator_id:
_eq: x-hausra-user-id
columns: []
columns:
- id
- actor_id
- version
- data
- created_at
- updated_at
- flow_id
Comment on lines +1080 to +1087
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

image

comment: ""
- role: platformAdmin
permission:
Expand Down Expand Up @@ -1146,7 +1154,14 @@
update_permissions:
- role: demoUser
permission:
columns: []
columns:
- id
- actor_id
- version
- data
- created_at
- updated_at
- flow_id
filter:
flow:
creator_id:
Expand Down
Loading