mirror of
https://github.com/go-gitea/gitea
synced 2025-02-11 09:14:44 +00:00
32 lines
978 B
Go
32 lines
978 B
Go
|
// Copyright 2025 The Gitea Authors. All rights reserved.
|
||
|
// SPDX-License-Identifier: MIT
|
||
|
|
||
|
package repo
|
||
|
|
||
|
import (
|
||
|
"net/http"
|
||
|
|
||
|
repo_model "code.gitea.io/gitea/models/repo"
|
||
|
"code.gitea.io/gitea/modules/templates"
|
||
|
"code.gitea.io/gitea/services/context"
|
||
|
)
|
||
|
|
||
|
const tplWatchUnwatch templates.TplName = "repo/watch_unwatch"
|
||
|
|
||
|
func ActionWatch(ctx *context.Context) {
|
||
|
err := repo_model.WatchRepo(ctx, ctx.Doer, ctx.Repo.Repository, ctx.PathParam("action") == "watch")
|
||
|
if err != nil {
|
||
|
handleActionError(ctx, err)
|
||
|
return
|
||
|
}
|
||
|
|
||
|
ctx.Data["IsWatchingRepo"] = repo_model.IsWatching(ctx, ctx.Doer.ID, ctx.Repo.Repository.ID)
|
||
|
ctx.Data["Repository"], err = repo_model.GetRepositoryByName(ctx, ctx.Repo.Repository.OwnerID, ctx.Repo.Repository.Name)
|
||
|
if err != nil {
|
||
|
ctx.ServerError("GetRepositoryByName", err)
|
||
|
return
|
||
|
}
|
||
|
ctx.RespHeader().Add("hx-trigger", "refreshUserCards") // see the `hx-trigger="refreshUserCards ..."` comments in tmpl
|
||
|
ctx.HTML(http.StatusOK, tplWatchUnwatch)
|
||
|
}
|