Skip to content

Commit

Permalink
feat(hasura): add select permissions to guest role
Browse files Browse the repository at this point in the history
  • Loading branch information
Torresmorah committed Mar 15, 2023
1 parent 233e5c5 commit 432b9c9
Show file tree
Hide file tree
Showing 3 changed files with 32 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
table:
name: check_history_by_endpoint
schema: public
select_permissions:
- role: guest
permission:
columns:
- value
- date
- avg_time
- availability
- producer_id
- total_checks
filter: {}
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
table:
name: endpoints_check_history
schema: public
select_permissions:
- role: guest
permission:
columns:
- value
- date
- producer_id
- successful_checks
- sum_total_time
- id
filter: {}
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
table:
name: health_check_history
schema: public
select_permissions:
- role: guest
permission:
columns:
- date
- total_checks
- created_at
- updated_at
- id
filter: {}

0 comments on commit 432b9c9

Please sign in to comment.