mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2025-05-25 11:22:16 +00:00
Finish watch backend
This commit is contained in:
parent
a922c3ff6a
commit
59ea3c0413
2 changed files with 29 additions and 10 deletions
|
@ -55,16 +55,27 @@ func CommitRepoAction(userId int64, userName string,
|
|||
if err != nil {
|
||||
return err
|
||||
}
|
||||
_, err = orm.InsertOne(&Action{
|
||||
UserId: userId,
|
||||
ActUserId: userId,
|
||||
ActUserName: userName,
|
||||
OpType: OP_COMMIT_REPO,
|
||||
Content: string(bs),
|
||||
RepoId: repoId,
|
||||
RepoName: repoName,
|
||||
})
|
||||
return err
|
||||
|
||||
// Add feeds for user self and all watchers.
|
||||
watches, err := GetWatches(repoId)
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
watches = append(watches, Watch{UserId: userId})
|
||||
|
||||
for i := range watches {
|
||||
_, err = orm.InsertOne(&Action{
|
||||
UserId: watches[i].UserId,
|
||||
ActUserId: userId,
|
||||
ActUserName: userName,
|
||||
OpType: OP_COMMIT_REPO,
|
||||
Content: string(bs),
|
||||
RepoId: repoId,
|
||||
RepoName: repoName,
|
||||
})
|
||||
return err
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
// NewRepoAction records action for create repository.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue