Skip to content

Commit

Permalink
Make new UI release
Browse files Browse the repository at this point in the history
  • Loading branch information
HunDunDM committed Feb 10, 2020
1 parent 77d007e commit 05e6129
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions pkg/apiserver/apiserver.go
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,9 @@ func Handler(apiPrefix string, config *config.Config, db *dbstore.DB) http.Handl
})

r := gin.New()
r.Use(cors.Default(),
gin.Recovery(),
gzip.Gzip(gzip.BestSpeed))
r.Use(cors.Default())
r.Use(gin.Recovery())
r.Use(gzip.Gzip(gzip.BestSpeed))
endpoint := r.Group(apiPrefix)

foo.NewService(config).Register(endpoint)
Expand Down
2 changes: 1 addition & 1 deletion ui/.github_release_version
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# This file contains a version number which will be used to release assets to
# GitHub. To trigger a new asset release, simply increase this version number.
20200109_1
20200210_1

0 comments on commit 05e6129

Please sign in to comment.