Skip to content

Commit

Permalink
fixup impl
Browse files Browse the repository at this point in the history
  • Loading branch information
joecorall committed Jul 9, 2024
1 parent 713c2f3 commit 373839c
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions workbench/impl.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,9 @@ func NewServer() Server {
func (Server) PostUpload(w http.ResponseWriter, r *http.Request) {

// TODO: transform the vanilla CSV into workbench CSV
resp := IslandoraObject{
Title: &islandoraModel.GenericField{
islandoraModel.Generic{
Value: "foo",
},
},
title := "foo"
resp := SheetsCsv{
Title: &title,
}

w.WriteHeader(http.StatusOK)
Expand Down

0 comments on commit 373839c

Please sign in to comment.