mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2025-03-10 00:06:26 -04:00
add comments
This commit is contained in:
parent
deaf69c801
commit
a7c7674b3f
1 changed files with 2 additions and 0 deletions
|
@ -658,6 +658,7 @@ func AddIssueSubscription(ctx *context.APIContext) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//only admin and user for itself can change subscription
|
||||||
if user.ID != ctx.User.ID && !ctx.User.IsAdmin {
|
if user.ID != ctx.User.ID && !ctx.User.IsAdmin {
|
||||||
ctx.Error(403, "User", nil)
|
ctx.Error(403, "User", nil)
|
||||||
return
|
return
|
||||||
|
@ -730,6 +731,7 @@ func DelIssueSubscription(ctx *context.APIContext) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//only admin and user for itself can change subscription
|
||||||
if user.ID != ctx.User.ID && !ctx.User.IsAdmin {
|
if user.ID != ctx.User.ID && !ctx.User.IsAdmin {
|
||||||
ctx.Error(403, "User", nil)
|
ctx.Error(403, "User", nil)
|
||||||
return
|
return
|
||||||
|
|
Loading…
Add table
Reference in a new issue