alpha
Login
or
Join now
drawbu.dev
/
tangled
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
Monorepo for Tangled
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
Overview
Issues
Pulls
Pipelines
tangled
/
appview
/
models
/
at
icy/xowowu
30 files
oppiliappan
appview/pages: add vouch hats
3mo ago
b7df865e
artifact.go
appview/pages: add vouch hats Signed-off-by: oppiliappan <me@oppi.li>
3 months ago
bsky.go
appview/pages: clean up copy on homepage Signed-off-by: oppiliappan <me@oppi.li>
4 months ago
collaborator.go
appview/models: move db.Collaborator into models Signed-off-by: oppiliappan <me@oppi.li>
10 months ago
email.go
appview/models: move db.Email into models Signed-off-by: oppiliappan <me@oppi.li>
10 months ago
follow.go
appview/models: move db.Follow into models Signed-off-by: oppiliappan <me@oppi.li>
10 months ago
issue.go
appview/pages: add vouch hats Signed-off-by: oppiliappan <me@oppi.li>
3 months ago
label.go
appview: add label-value search support to models and indexers Add LabelNameValues method to LabelState, returning composite "name:value" strings for all labels with non-empty values. Add LabelValues and NegatedLabelValues fields to IssueSearchOptions and PullSearchOptions. Change NegatedAuthorDid from a single string to NegatedAuthorDids []string to support excluding multiple authors. Update both issue and pull indexers: bump mapping version to 3, add label_values keyword field, populate it via LabelNameValues, and add search clauses for the new fields. Signed-off-by: Thomas Karpiniec <tom.karpiniec@outlook.com>
4 months ago
language.go
appview/models: move db.RepoLanguage into models Signed-off-by: oppiliappan <me@oppi.li>
10 months ago
notifications.go
*: correct typos throughout codebase Fix various misspellings found by the typos tool: - Error messages: Forbiden -> Forbidden, insufficent -> insufficient - Comments and docs: recieve -> receive, acheive -> achieve, etc. - Variable names: Referencs -> References, intialize -> initialize - HTML templates: Unubscribe -> Unsubscribe, explictly -> explicitly - Function names: perferom -> perform Also remove backwards compat code for is_deafult JSON field. Add _typos.toml config for false positives (external APIs, etc.) Signed-off-by: eti <eti@eti.tf>
3 months ago
pipeline.go
appview: add repo_did to repos/stars/pipelines tables, update queries Signed-off-by: Lewis <lewis@tangled.org>
4 months ago
preferences.go
appview: allow users to set their preferences for the punchcard being displayed Signed-off-by: Will Andrews <will7989@hotmail.com>
5 months ago
profile.go
appview: remove unnecessary pinnedrepoDIDs Lewis: May this revision serve well! <lewis@tangled.org>
3 months ago
pubkey.go
appview/models: move db.PublicKey into models Signed-off-by: oppiliappan <me@oppi.li>
10 months ago
pull.go
appview/pages: add vouch hats Signed-off-by: oppiliappan <me@oppi.li>
3 months ago
punchcard.go
appview/models: move db.PunchCard into models Signed-off-by: oppiliappan <me@oppi.li>
10 months ago
reaction.go
appview/{db,pages,models}: show tooltips for user handles when hovering on reactions Signed-off-by: Cameron Smith <cam@camsmith.dev>
9 months ago
reference.go
appview: backlinks currently all backlinks are parsed with markdown parser. So only explict urls like below are supported: - <https://tangled.org/owner.com/repo-name/issues/123> - [full url](https://tangled.org/owner.com/repo-name/issues/123) - [absolute path](/owner.com/repo-name/issues/123) Also `#comment-123` fragment is supported too. All references in issue/pull/comment records are stored in at-uri format. we do have a `mentions` field, but it isn't used yet. mentions are parsed on rendering and aren't stored anywhere for now. Signed-off-by: Seongmin Lee <git@boltless.me>
8 months ago
registration.go
appview/models: move db.Registration into models Signed-off-by: oppiliappan <me@oppi.li>
10 months ago
repo.go
appview: remove unnecessary pinnedrepoDIDs Lewis: May this revision serve well! <lewis@tangled.org>
3 months ago
search.go
appview/state: add /search handler Signed-off-by: oppiliappan <me@oppi.li>
3 months ago
search_test.go
appview/models: add tests for HasSearchFilters on all search option types Cover each filter field individually to guard against future additions that miss the boolean check. Also documents that non-filter fields (RepoAt, IsOpen, Knot, Did, State, Page) intentionally do not count as active filters. Signed-off-by: Matías Insaurralde <matias@insaurral.de>
3 months ago
signup.go
appview/models: move db.Signup into models Signed-off-by: oppiliappan <me@oppi.li>
10 months ago
site_deploy.go
appview/{db,models}: add repo sites and deploys models/queries Signed-off-by: Anirudh Oppiliappan <anirudh@tangled.org>
5 months ago
sites.go
appview/{db,models}: add repo sites and deploys models/queries Signed-off-by: Anirudh Oppiliappan <anirudh@tangled.org>
5 months ago
spindle.go
appview/models: move db.Spindle* into models Signed-off-by: oppiliappan <me@oppi.li>
10 months ago
star.go
appview/db: split star subjects - rename `starred_by_did` column to `did` - rename `repo_at` column to `subject_at` and removed foreign key constraints. - rename `RepoAt` field to `SubjectAt` - remove `Repo` field and split `models.Star` to `RepoStar` and `StringStar` as now there can be two kinds of reverse mappings. Signed-off-by: Seongmin Lee <git@boltless.me>
8 months ago
string.go
appview: support star for `sh.tangled.string` Not sending "XXX starred your string" notif yet. Close: <https://tangled.org/tangled.org/core/issues/296> Signed-off-by: Seongmin Lee <git@boltless.me>
8 months ago
timeline.go
appview/db: split star subjects - rename `starred_by_did` column to `did` - rename `repo_at` column to `subject_at` and removed foreign key constraints. - rename `RepoAt` field to `SubjectAt` - remove `Repo` field and split `models.Star` to `RepoStar` and `StringStar` as now there can be two kinds of reverse mappings. Signed-off-by: Seongmin Lee <git@boltless.me>
8 months ago
vouch.go
appview/pages: add vouch hats Signed-off-by: oppiliappan <me@oppi.li>
3 months ago
webhook.go
appview/{db,models}: webhook tables and crud ops Signed-off-by: Anirudh Oppiliappan <anirudh@tangled.org>
5 months ago