feat: redesign project sharing

This commit is contained in:
Jordan Knott
2020-10-20 18:59:21 -05:00
parent 36f25391b4
commit 737d2b640f
17 changed files with 708 additions and 530 deletions
+1 -1
View File
@@ -16,7 +16,7 @@ UPDATE user_account SET profile_avatar_url = $2 WHERE user_id = $1
RETURNING *;
-- name: GetMemberData :many
SELECT username, email, user_id FROM user_account;
SELECT username, full_name, email, user_id FROM user_account;
-- name: UpdateUserAccountInfo :one
UPDATE user_account SET bio = $2, full_name = $3, initials = $4, email = $5