about summary refs log tree commit diff
path: root/app/models/status.rb
AgeCommit message (Collapse)Author
2019-05-21remove the buggy do-not-@-me impl - we'll replace this with a bangtag latermultiple creatures
2019-05-21Moderation: add `force sensitive` and `force unlisted` actions. Accounts: ↵multiple creatures
add federatable `adult content` tag. Handle from remote accounts as well.
2019-05-21Statuses: set `local_only` flag from the `PostStatusService`. Default to ↵multiple creatures
`en` locale for statuses.
2019-05-21Do not process mentions or bangtags in drafts. Add `draft?` method to ↵multiple creatures
`Status` model.
2019-05-21Correct breaking type-o: `scope` -> `starting_scope`multiple creatures
2019-05-21Implement scoped tags; use `local:` and `self:` scopes for community and ↵multiple creatures
personal tags, respectively.
2019-05-21Add option to hide public replies from profilemultiple creatures
2019-05-21Status model: `LOCAL_DOMAINS` constant has been moved into the `Account` model.multiple creatures
2019-05-21Make sure that local-only tokens still get detected when signature is enabled.multiple creatures
2019-05-21Add `i:am` bangtag to allow plural systems sharing an account to identify ↵multiple creatures
who is roaring.
2019-05-21DB: Replace `NULL` boolean values with `FALSE` in Monsterpit feature ↵multiple creatures
columns; add `vars` column for persistent bangtag variable storage.
2019-05-21Make sure only distributable statuses are marked curated; move bangtags ↵multiple creatures
processing into own helper lib.
2019-05-21Limit scope of local/world TLs. Fixes the bug causing some requests to ↵multiple creatures
fetch the local and world timelines to time out.
2019-05-21This `relay` should be a string, not a `Symbol`.multiple creatures
2019-05-21Dedicated `network` DB column for marking whether a roar is a part of the ↵multiple creatures
local network; rewrite posts from `FORCE_*` domains at create time instead of dynamically.
2019-05-21Add `share_key` column to status table in preparation for letting folks ↵multiple creatures
generate/revoke links to view private posts.
2019-05-21Refactored community-curated world timeline code; **privacy**: remove ↵multiple creatures
support for packmate-visible hashtags until we resolve federation caveats.
2019-05-21Raise max search result limit to 66 in API.multiple creatures
2019-05-21Only consider favorites for community-curated world timeline until we can ↵multiple creatures
make the query for considering boosts not be so abysmally slow.
2019-05-21`Status.search_for`: Don't need `Status.unscoped`; the `default_scope` sorts ↵multiple creatures
the way we intend.
2019-05-21Use PostgreSQL FTS for searches.multiple creatures
2019-05-21Handle more audio formats, only converting formats not supported by HTML5 audiomultiple creatures
2019-05-21various bangtag improvements squashed into one commitmultiple creatures
2019-05-21bangtags: support namespacing, args, text tf + add replace commandsmultiple creatures
2019-05-21curated world: ignore non-self repliesmultiple creatures
2019-05-21curated world: also consider public favsmultiple creatures
2019-05-21add bangtags to reply-all thead, insert zws; handle fencing in bracesmultiple creatures
2019-05-21bangtag to mention admin/mods/staffmultiple creatures
2019-05-21bangtags for cloudroot (monsterpit.cloud/~/you) and blogroot ↵multiple creatures
(monsterpit.blog/~/you) links
2019-05-21initial bangtags implementation, permalinksmultiple creatures
2019-05-21add option to show raw world timelinemultiple creatures
2019-05-21update status.rbmultiple creatures
2019-05-21make sure local only replies stay localmultiple creatures
2019-05-21allow eye emoji to be a local-only flagmultiple creatures
2019-05-21more local-only optionsmultiple creatures
2019-05-21hide follower-only replies on account tlsmultiple creatures
2019-05-21improve filteringmultiple creatures
2019-05-21allow overriding visibility/sensitivity by domainmultiple creatures
2019-05-21handle no-replies flagmultiple creatures
2019-05-21unlisted & private hashtagsmultiple creatures
2019-05-21community world tl + networked home tlmultiple creatures
2019-05-21Prune replies to muted/blocked accountsmultiple creatures
2019-05-21allow searching bookmarksmultiple creatures
2019-05-17Add support for HTML-formatted tootsThibaut Girka
2019-05-17Add database row to hold status content typeThibaut Girka
2019-05-15Merge branch 'master' into glitch-soc/merge-upstreamThibaut Girka
2019-05-14Record account suspend/silence time and keep track of domain blocks (#10660)ThibG
* Record account suspend/silence time and keep track of domain blocks * Also unblock users who were suspended/silenced before dates were recorded * Add tests * Keep track of suspending date for users suspended through the CLI * Show accurate number of accounts that would be affected by unsuspending an instance * Change migration to set silenced_at and suspended_at * Revert "Also unblock users who were suspended/silenced before dates were recorded" This reverts commit a015c65d2d1e28c7b7cfab8b3f8cd5fb48b8b71c. * Switch from using suspended and silenced to suspended_at and silenced_at * Add post-deployment migration script to remove `suspended` and `silenced` columns * Use Account#silence! and Account#suspend! instead of updating the underlying property * Add silenced_at and suspended_at migration to post-migration * Change account fabricator to translate suspended and silenced attributes * Minor fixes * Make unblocking domains always retroactive
2019-05-01Add site-wide options to show reblogs and replies in local/public timelinesThibaut Girka
Fixes #1021
2019-03-28Merge branch 'master' into glitch-soc/merge-upstreamThibaut Girka
Conflicts: - app/workers/activitypub/distribute_poll_update_worker.rb - config/locales/pl.yml
2019-03-28Rename :poll to :preloadable_poll and :owned_poll to :poll on Status (#10401)Eugen Rochko
Also, fix some n+1 queries Resolve #10365