locking: add json:"" tags to Lock fields for --json support

This commit is contained in:
Taylor Blau 2016-12-27 17:03:02 -07:00
parent 7929df8664
commit 963e46ca63

@ -126,16 +126,16 @@ func (c *Client) UnlockFileById(id string, force bool) error {
type Lock struct {
// Id is the unique identifier corresponding to this particular Lock. It
// must be consistent with the local copy, and the server's copy.
Id string
Id string `json:"id"`
// Path is an absolute path to the file that is locked as a part of this
// lock.
Path string
Path string `json:"path"`
// Name is the name of the person holding this lock
Name string
Name string `json:"name"`
// Email address of the person holding this lock
Email string
Email string `json:"email"`
// LockedAt is the time at which this lock was acquired.
LockedAt time.Time
LockedAt time.Time `json:"locked_at"`
}
func (c *Client) newLockFromApi(a api.Lock) Lock {