Skip to content

Commit

Permalink
fix: List Group Users Query (#124)
Browse files Browse the repository at this point in the history
  • Loading branch information
niharbansal02 authored Jul 20, 2022
1 parent ac0034f commit dea0c04
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion store/postgres/groups.go
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ func buildUpdateGroupQuery(dialect goqu.DialectWrapper) (string, error) {

func buildListGroupUsersQuery(dialect goqu.DialectWrapper) (string, error) {
listGroupUsersQuery, _, err := dialect.Select(
goqu.I("u.id").As("u"),
goqu.I("u.id").As("id"),
goqu.I("u.name").As("name"),
goqu.I("u.email").As("email"),
goqu.I("u.metadata").As("metadata"),
Expand Down

0 comments on commit dea0c04

Please sign in to comment.