mirror of
https://github.com/coder/coder.git
synced 2025-07-06 15:41:45 +00:00
* chore: include organization name when fetching templates * chore: rename template_with_user to template_with_names
17 lines
407 B
SQL
17 lines
407 B
SQL
DROP VIEW template_with_names;
|
|
|
|
CREATE VIEW
|
|
template_with_users
|
|
AS
|
|
SELECT
|
|
templates.*,
|
|
coalesce(visible_users.avatar_url, '') AS created_by_avatar_url,
|
|
coalesce(visible_users.username, '') AS created_by_username
|
|
FROM
|
|
templates
|
|
LEFT JOIN
|
|
visible_users
|
|
ON
|
|
templates.created_by = visible_users.id;
|
|
COMMENT ON VIEW template_with_users IS 'Joins in the username + avatar url of the created by user.';
|