tenseleyflow/shithub / 42139e1

Browse files

api/actions_lifecycle_rest: gofmt

Authored by mfwolffe <wolffemf@dukes.jmu.edu>
SHA
42139e11bc51c34d23f6e2f950300cccf8ba6403
Parents
d78d908
Tree
8e353ba

1 changed file

StatusFile+-
M internal/web/handlers/api/actions_lifecycle_rest.go 2 2
internal/web/handlers/api/actions_lifecycle_rest.gomodified
@@ -177,7 +177,7 @@ func (h *Handlers) actionsRunArtifactsList(w http.ResponseWriter, r *http.Reques
177177
 			ID:         a.ID,
178178
 			Name:       a.Name,
179179
 			SizeBytes:  a.ByteCount,
180
-			ArchiveURL: artifactArchiveURL(r, chi.URLParam(r, "owner"), repo.Name,a.ID),
180
+			ArchiveURL: artifactArchiveURL(r, chi.URLParam(r, "owner"), repo.Name, a.ID),
181181
 			ExpiresAt:  pgTimestampString(a.ExpiresAt),
182182
 			CreatedAt:  a.CreatedAt.Time.UTC().Format(time.RFC3339),
183183
 		})
@@ -198,7 +198,7 @@ func (h *Handlers) actionsArtifactGet(w http.ResponseWriter, r *http.Request) {
198198
 		ID:         artifact.ID,
199199
 		Name:       artifact.Name,
200200
 		SizeBytes:  artifact.ByteCount,
201
-		ArchiveURL: artifactArchiveURL(r, chi.URLParam(r, "owner"), repo.Name,artifact.ID),
201
+		ArchiveURL: artifactArchiveURL(r, chi.URLParam(r, "owner"), repo.Name, artifact.ID),
202202
 		ExpiresAt:  pgTimestampString(artifact.ExpiresAt),
203203
 		CreatedAt:  artifact.CreatedAt.Time.UTC().Format(time.RFC3339),
204204
 	})