Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions backend/server/api/store/store.go
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ import (
// @Description Get the value by given key
// @Tags framework/projects
// @Param storeKey path string true "storeKey"
// @Success 200 {object} json.RawMessage
// @Success 200 {object} interface{}
// @Failure 400 {string} errcode.Error "Bad Request"
// @Failure 500 {string} errcode.Error "Internal Error"
// @Router /store/{storeKey} [get]
Expand All @@ -53,8 +53,8 @@ func GetStore(c *gin.Context) {
// @Tags framework/projects
// @Accept application/json
// @Param storeKey path string true "storeKey"
// @Param project body json.RawMessage false "json"
// @Success 200 {object} json.RawMessage
// @Param project body interface{} false "json"
// @Success 200 {object} interface{}
// @Failure 400 {string} errcode.Error "Bad Request"
// @Failure 500 {string} errcode.Error "Internal Error"
// @Router /store/{storeKey} [PUT]
Expand Down
Loading