mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-08 18:04:14 +01:00
Code style fixes
This commit is contained in:
parent
e6781d5488
commit
e5c56fe30d
1 changed files with 3 additions and 2 deletions
|
@ -71,9 +71,9 @@ func CreateOrUpdateIssueWatch(userID, issueID int64, isWatching bool) error {
|
||||||
|
|
||||||
// GetIssueWatch returns an issue watch by user and issue
|
// GetIssueWatch returns an issue watch by user and issue
|
||||||
func GetIssueWatch(userID, issueID int64) (iw *IssueWatch, exists bool, err error) {
|
func GetIssueWatch(userID, issueID int64) (iw *IssueWatch, exists bool, err error) {
|
||||||
iw, exists, err = getIssueWatch(x, userID, issueID)
|
return getIssueWatch(x, userID, issueID)
|
||||||
return
|
|
||||||
}
|
}
|
||||||
|
|
||||||
func getIssueWatch(e Engine, userID, issueID int64) (iw *IssueWatch, exists bool, err error) {
|
func getIssueWatch(e Engine, userID, issueID int64) (iw *IssueWatch, exists bool, err error) {
|
||||||
iw = new(IssueWatch)
|
iw = new(IssueWatch)
|
||||||
exists, err = e.
|
exists, err = e.
|
||||||
|
@ -87,6 +87,7 @@ func getIssueWatch(e Engine, userID, issueID int64) (iw *IssueWatch, exists bool
|
||||||
func GetIssueWatchers(issueID int64) ([]*IssueWatch, error) {
|
func GetIssueWatchers(issueID int64) ([]*IssueWatch, error) {
|
||||||
return getIssueWatchers(x, issueID)
|
return getIssueWatchers(x, issueID)
|
||||||
}
|
}
|
||||||
|
|
||||||
func getIssueWatchers(e Engine, issueID int64) (watches []*IssueWatch, err error) {
|
func getIssueWatchers(e Engine, issueID int64) (watches []*IssueWatch, err error) {
|
||||||
err = e.
|
err = e.
|
||||||
Where("issue_id = ?", issueID).
|
Where("issue_id = ?", issueID).
|
||||||
|
|
Loading…
Reference in a new issue