Skip to content
This repository was archived by the owner on Aug 30, 2024. It is now read-only.

Environment subcommands #89

Closed
wants to merge 14 commits into from
Prev Previous commit
Next Next commit
fixup! Add tab:"omit" struct tag
  • Loading branch information
cmoog committed Aug 2, 2020
commit 66528ca9181c7e685ed5342a53ebd6879ae96661
3 changes: 2 additions & 1 deletion internal/entclient/me.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,12 @@ import (

// User describes a Coder user account
type User struct {
ID string `json:"id"`
ID string `json:"id" tab:"omit"`
Email string `json:"email"`
Username string `json:"username"`
Name string `json:"name"`
CreatedAt time.Time `json:"created_at"`
UpdatedAt time.Time `json:"updated_at" tab:"omit"`
}

// Me gets the details of the authenticated user
Expand Down