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

go fmt

Changeset 89082c218620

Parent 90d073f7b05d

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

Changes to 2 files · Browse files at 89082c218620 Showing diff from parent 90d073f7b05d Diff from another changeset...

Change 1 of 1 Show Entire File kiln/​api.go Stacked
 
10
11
12
13
14
15
16
 
 
 
 
17
18
 
19
20
21
22
23
24
25
26
 
 
 
 
 
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
 
 
 
 
 
 
 
 
 
 
 
 
 
 
44
45
46
47
48
 
 
49
50
 
10
11
12
 
 
 
 
13
14
15
16
17
 
18
19
20
21
 
 
 
 
 
22
23
24
25
26
27
28
29
 
 
 
 
 
 
 
 
 
 
 
 
 
 
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
 
 
47
48
49
50
@@ -10,41 +10,41 @@
   // Represents the project JSON returned from the Kiln API  type KilnProject struct { - Id int64 `json:"ixProject"` - Slug string `json:"sSlug"` - Name string `json:"sName"` - Description string `json:"sDescription"` + Id int64 `json:"ixProject"` + Slug string `json:"sSlug"` + Name string `json:"sName"` + Description string `json:"sDescription"`   DefaultPermission string `json:"permissionDefault"` - RepoGroups []KilnRepoGroup + RepoGroups []KilnRepoGroup  }    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  }    type KilnRepo struct { - Id int64 `json:"ixRepo"` - RepoGroupId int64 `json:"ixRepoGroup"` - ParentId int64 `json:"ixParent"` - IsCentral bool `json:"fCentral"` - Slug string `json:"sSlug"` - GroupSlug string `json:"sGroupSlug"` - ProjectSlug string `json:"sProjectSlug"` - Name string `json:"sName"` - Description string `json:"sDescription"` - Status string `json:"sStatus"` - Size int64 `json:"bytesSize"` - Creator KilnPerson `json:"personCreator"` - DefaultPermission string `json:"permissionDefault"` - Branches []KilnRepo `json:"repoBranches"` + Id int64 `json:"ixRepo"` + RepoGroupId int64 `json:"ixRepoGroup"` + ParentId int64 `json:"ixParent"` + IsCentral bool `json:"fCentral"` + Slug string `json:"sSlug"` + GroupSlug string `json:"sGroupSlug"` + ProjectSlug string `json:"sProjectSlug"` + Name string `json:"sName"` + Description string `json:"sDescription"` + Status string `json:"sStatus"` + Size int64 `json:"bytesSize"` + Creator KilnPerson `json:"personCreator"` + DefaultPermission string `json:"permissionDefault"` + Branches []KilnRepo `json:"repoBranches"`  }    type KilnPerson struct { - Id int64 `json:"ixPerson"` - Name string `json:"sName"` + Id int64 `json:"ixPerson"` + Name string `json:"sName"`   Email string `json:"sEmail"`  }
Change 1 of 1 Show Entire File kiln/​kiln.go Stacked
 
211
212
213
214
 
215
216
217
 
211
212
213
 
214
215
216
217
@@ -211,7 +211,7 @@
   // Returns the full URL for an API call in Kiln  func (k *KilnClient) apiRoute(route string) string { - return k.kilnRoute("Api/1.0/"+strings.TrimLeft(route, "/")) + return k.kilnRoute("Api/1.0/" + strings.TrimLeft(route, "/"))  }    // Returns the full URL for a given API call or Kiln route