alpha
Login
or
Join now
tangled.org
/
core
Star
5
Fork
66
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
tangled.org
Star
5
Fork
66
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
Overview
Issues
12
Pulls
26
Pipelines
core
/
appview
/
models
/
at
e5e5a06dc96f32d012033f73a8ff9a710660c391
32 files
Lewis
appview: canonicalize repo urls to handle/slug
6w ago
347194a2
artifact.go
appview: canonicalize repo urls to handle/slug Lewis: May this revision serve well! <lewis@tangled.org>
1 month ago
bsky.go
appview/pages: clean up copy on homepage Signed-off-by: oppiliappan <me@oppi.li>
3 months ago
collaborator.go
appview/db,models: add repo_did columns and update model structs Lewis: May this revision serve well! <lewis@tangled.org>
2 months ago
email.go
appview/models: move db.Email into models Signed-off-by: oppiliappan <me@oppi.li>
9 months ago
follow.go
appview/models: move db.Follow into models Signed-off-by: oppiliappan <me@oppi.li>
9 months ago
issue.go
appview/db,models: add repo_did columns and update model structs Lewis: May this revision serve well! <lewis@tangled.org>
2 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>
3 months ago
language.go
appview/db,models: add repo_did columns and update model structs Lewis: May this revision serve well! <lewis@tangled.org>
2 months ago
migration.go
appview: oauth session cache, backoff on stuck migrations Lewis: May this revision serve well! <lewis@tangled.org>
1 month 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>
2 months ago
pipeline.go
appview: add repo_did to repos/stars/pipelines tables, update queries Signed-off-by: Lewis <lewis@tangled.org>
3 months ago
preferences.go
appview: allow users to set their preferences for the punchcard being displayed Signed-off-by: Will Andrews <will7989@hotmail.com>
4 months ago
profile.go
appview: remove unnecessary pinnedrepoDIDs Lewis: May this revision serve well! <lewis@tangled.org>
2 months ago
pubkey.go
appview/models: move db.PublicKey into models Signed-off-by: oppiliappan <me@oppi.li>
9 months ago
pull.go
appview/db,models: add repo_did columns and update model structs Lewis: May this revision serve well! <lewis@tangled.org>
2 months ago
punchcard.go
appview/models: move db.PunchCard into models Signed-off-by: oppiliappan <me@oppi.li>
9 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>
8 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>
7 months ago
registration.go
appview/models: move db.Registration into models Signed-off-by: oppiliappan <me@oppi.li>
9 months ago
repo.go
appview: canonicalize repo urls to handle/slug Lewis: May this revision serve well! <lewis@tangled.org>
1 month ago
repo_test.go
appview: canonicalize repo urls to handle/slug Lewis: May this revision serve well! <lewis@tangled.org>
1 month ago
search.go
appview/db,models: add repo_did columns and update model structs Lewis: May this revision serve well! <lewis@tangled.org>
2 months ago
search_test.go
appview/db,models: add repo_did columns and update model structs Lewis: May this revision serve well! <lewis@tangled.org>
2 months ago
signup.go
appview/models: move db.Signup into models Signed-off-by: oppiliappan <me@oppi.li>
9 months ago
site_deploy.go
appview/db,models: add repo_did columns and update model structs Lewis: May this revision serve well! <lewis@tangled.org>
2 months ago
sites.go
appview/db,models: add repo_did columns and update model structs Lewis: May this revision serve well! <lewis@tangled.org>
2 months ago
spindle.go
appview/models: move db.Spindle* into models Signed-off-by: oppiliappan <me@oppi.li>
9 months ago
star.go
appview/db,models: add repo_did columns and update model structs Lewis: May this revision serve well! <lewis@tangled.org>
2 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>
7 months ago
timeline.go
appview/timeline: collapse identical events Group consecutive timeline events (defined as being the same action and operating on the same target) together so that the same target is not seen multiple times in a row. This notably does not completely aggregate all events together, so the timeline may still appear as "A B A" if several instances of event A were broken up by event B. For collapsed groups, we render "and N other user(s)" in the description of the event, with a popover that shows the collapsed users if "N other user(s)" is hovered. The number of events fetched was increased so that `limit` refers to the number of items in the timeline post-grouping. Signed-off-by: Kevin Yap <me@kevinyap.ca>
1 month ago
vouch.go
appview/db: support vouch evidences in DB Signed-off-by: oppiliappan <me@oppi.li>
1 month ago
webhook.go
appview/db,models: add repo_did columns and update model structs Lewis: May this revision serve well! <lewis@tangled.org>
2 months ago