+1
-1
appview/db/db.go
+1
-1
appview/db/db.go
+46
-2
appview/db/follow.go
+46
-2
appview/db/follow.go
···-query := `select user_did, subject_did, followed_at, at_uri from follows where user_did = ? and subject_did = ?`···
···+query := `select user_did, subject_did, followed_at, rkey from follows where user_did = ? and subject_did = ?`···
+19
-17
appview/db/repos.go
+19
-17
appview/db/repos.go
·········-rows, err := d.db.Query(`select r.* from repos r join collaborators c on r.id = c.repo where c.did = ?;`, collaborator)···
·········+rows, err := d.db.Query(`select r.did, r.name, r.knot, r.rkey, r.created from repos r join collaborators c on r.id = c.repo where c.did = ?;`, collaborator)···
+7
appview/pages/pages.go
+7
appview/pages/pages.go
···
+27
-3
appview/pages/templates/user/profile.html
+27
-3
appview/pages/templates/user/profile.html
······
······
+40
-6
appview/state/state.go
+40
-6
appview/state/state.go
·········-resp, err := comatproto.RepoDeleteRecord(r.Context(), client, &comatproto.RepoDeleteRecord_Input{···
············