Signed-off-by: Anirudh Oppiliappan anirudh@tangled.sh
REBASED
appview/db/timeline.go
REBASED
appview/db/timeline.go
This patch was likely rebased, as context lines do not match.
REVERTED
appview/pages/templates/timeline/fragments/timeline.html
REVERTED
appview/pages/templates/timeline/fragments/timeline.html
···<div class="flex flex-col divide-y divide-gray-200 dark:divide-gray-700 border border-gray-200 dark:border-gray-700 rounded-sm">···<div class="pl-6 py-2 bg-white dark:bg-gray-800 text-gray-600 dark:text-gray-300 flex flex-wrap items-center gap-2 text-sm">···<span class="text-gray-700 dark:text-gray-400 text-xs">{{ template "repo/fragments/time" $repo.Created }}</span>-{{ template "user/fragments/repoCard" (list $root . true true (dict "IsStarred" $event.IsStarred "RepoAt" .RepoAt "Stats" (dict "StarCount" $event.StarCount))) }}
···<div class="flex flex-col divide-y divide-gray-200 dark:divide-gray-700 border border-gray-200 dark:border-gray-700 rounded-sm">···<div class="pl-6 py-2 bg-white dark:bg-gray-800 text-gray-600 dark:text-gray-300 flex flex-wrap items-center gap-2 text-sm">···<span class="text-gray-700 dark:text-gray-400 text-xs">{{ template "repo/fragments/time" $repo.Created }}</span>
REVERTED
appview/pages/templates/user/fragments/repoCard.html
REVERTED
appview/pages/templates/user/fragments/repoCard.html
···<div class="py-4 px-6 gap-1 flex flex-col drop-shadow-sm rounded bg-white dark:bg-gray-800 min-h-32">
···<div class="py-4 px-6 gap-1 flex flex-col drop-shadow-sm rounded bg-white dark:bg-gray-800 min-h-32">
NEW
appview/db/follow.go
NEW
appview/db/follow.go
···
···+func getFollowStatuses(e Execer, userDid string, subjectDids []string) (map[string]FollowStatus, error) {+func GetFollowStatuses(e Execer, userDid string, subjectDids []string) (map[string]FollowStatus, error) {
NEW
appview/db/star.go
NEW
appview/db/star.go
···
···+func getStarStatuses(e Execer, userDid string, repoAts []syntax.ATURI) (map[string]bool, error) {+func GetStarStatuses(e Execer, userDid string, repoAts []syntax.ATURI) (map[string]bool, error) {