Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Dev 1 #8101

Merged
merged 6 commits into from
Sep 25, 2024
Merged

Dev 1 #8101

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/project/project.go
Original file line number Diff line number Diff line change
Expand Up @@ -53,12 +53,12 @@ func GetProject(c *gin.Context) {
shared.ApiOutputSuccess(c, projectOutput, http.StatusOK)
}

// @Summary Get project exist check
// @Description Get project exist check
// @Summary Get project related check
// @Description Get project related check info, such existence, token validity
// @Tags framework/projects
// @Accept application/json
// @Param projectName path string true "project name"
// @Success 200 {object} models.ApiOutputProject
// @Success 200 {object} models.ApiProjectCheck
// @Failure 400 {string} errcode.Error "Bad Request"
// @Failure 500 {string} errcode.Error "Internal Error"
// @Router /projects/{projectName}/check [get]
Expand Down
Loading