Skip to content

Commit

Permalink
Fix/join request permission (#390)
Browse files Browse the repository at this point in the history
* fix(hasura): add status permission

* fix(hasura): add status permission

* fix(hasura): remove duplicated keys
  • Loading branch information
leisterfrancisco committed Feb 15, 2022
1 parent a8a8c01 commit 83d307b
Showing 1 changed file with 26 additions and 25 deletions.
51 changes: 26 additions & 25 deletions hasura/metadata/databases/default/tables/public_join_request.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,30 +2,31 @@ table:
name: join_request
schema: public
select_permissions:
- permission:
allow_aggregations: true
columns:
- account
- created_at
- email
- id
- receive_news
- state
- status
- updated_at
filter: {}
role: guest
- permission:
allow_aggregations: true
columns:
- account
- created_at
- email
- id
- receive_news
- state
- status
- updated_at
filter: {}
role: guest
update_permissions:
- permission:
check: null
columns:
- account
- email
- receive_news
- state
filter: {}
role: guest
- permission:
check: null
columns:
- account
- email
- receive_news
- state
- status
filter: {}
role: guest
delete_permissions:
- permission:
filter: {}
role: guest
- permission:
filter: {}
role: guest

0 comments on commit 83d307b

Please sign in to comment.