Kiln » gitkiln Read More
Clone URL:  
Pushed to one repository · View In Graph Contained in master

beef up JSON structs and fix formatting

Changeset 8d77cc754a6d

Parent 89082c218620

by Profile picture of User 12Benjamin Pollack <benjamin@fogcreek.com>

Changes to one file · Browse files at 8d77cc754a6d Showing diff from parent 89082c218620 Diff from another changeset...

Change 1 of 2 Show Entire File kiln/​api.go Stacked
 
19
20
21
22
23
24
25
26
 
 
 
 
 
27
28
29
 
34
35
36
 
 
37
38
39
40
 
41
42
43
 
19
20
21
 
 
 
 
 
22
23
24
25
26
27
28
29
 
34
35
36
37
38
39
40
41
42
43
44
45
46
@@ -19,11 +19,11 @@
 }    type KilnRepoGroup struct { - Id int64 `json:"ixRepoGroup"` - ProjectId int64 `json:"ixProject"` - Slug string `json:"sSlug"` - Name string `json:"sName"` - Repos []KilnRepo + Id int64 `json:"ixRepoGroup"` + ProjectId int64 `json:"ixProject"` + Slug string `json:"sSlug"` + Name string `json:"sName"` + Repos []KilnRepo `json:"repos"`  }    type KilnRepo struct { @@ -34,10 +34,13 @@
  Slug string `json:"sSlug"`   GroupSlug string `json:"sGroupSlug"`   ProjectSlug string `json:"sProjectSlug"` + GitUrl string `json:"sGitUrl"` + GitSshUrl string `json:"sGitSshUrl"`   Name string `json:"sName"`   Description string `json:"sDescription"`   Status string `json:"sStatus"`   Size int64 `json:"bytesSize"` + Vcs int `json:"vcs"`   Creator KilnPerson `json:"personCreator"`   DefaultPermission string `json:"permissionDefault"`   Branches []KilnRepo `json:"repoBranches"`