Signed-off-by: Anirudh Oppiliappan anirudh@tangled.sh
-7
appview/db/db.go
-7
appview/db/db.go
+12
-1
appview/db/pulls.go
+12
-1
appview/db/pulls.go
···repo_at, owner_did, pull_id, title, target_branch, body, rkey, state, source_branch, source_repo_at, stack_id, change_id, parent_change_id···············
···repo_at, owner_did, pull_id, title, target_branch, body, rkey, state, source_branch, source_repo_at, stack_id, change_id, parent_change_id···············
+36
-6
appview/db/repos.go
+36
-6
appview/db/repos.go
············-row := e.QueryRow(`select did, name, knot, created, rkey, description from repos where at_uri = ?`, atUri)-if err := row.Scan(&repo.Did, &repo.Name, &repo.Knot, &createdAt, &repo.Rkey, &nullableDescription); err != nil {······-err := rows.Scan(&repo.Did, &repo.Name, &repo.Knot, &repo.Rkey, &nullableDescription, &createdAt, &nullableSource)···-err := row.Scan(&repo.Did, &repo.Name, &repo.Knot, &repo.Rkey, &nullableDescription, &createdAt, &nullableSource)
············+row := e.QueryRow(`select id, did, name, knot, created, rkey, description from repos where at_uri = ?`, atUri)+if err := row.Scan(&repo.Id, &repo.Did, &repo.Name, &repo.Knot, &createdAt, &repo.Rkey, &nullableDescription); err != nil {······+err := rows.Scan(&repo.Id, &repo.Did, &repo.Name, &repo.Knot, &repo.Rkey, &nullableDescription, &createdAt, &nullableSource)···+err := row.Scan(&repo.Id, &repo.Did, &repo.Name, &repo.Knot, &repo.Rkey, &nullableDescription, &createdAt, &nullableSource)
+27
-27
appview/notify/db/db.go
+27
-27
appview/notify/db/db.go
························log.Printf("NewFollow: failed to get notification preferences for %s: %v", follow.SubjectDid, err)·································
··················+func (n *databaseNotifier) NewIssueComment(ctx context.Context, comment *models.IssueComment) {······log.Printf("NewFollow: failed to get notification preferences for %s: %v", follow.SubjectDid, err)·································
+1
appview/state/state.go
+1
appview/state/state.go