about summary refs log tree commit diff
path: root/app/controllers
AgeCommit message (Collapse)Author
2020-02-04outright throw 404 if rss is disabledmultiple creatures
2020-02-04fix rss endpoint & add option to enable it (off by default)multiple creatures
2020-01-25fix manifests json (thanks @@Frinkeldoodle@transfur.online)multiple creatures
2020-01-22Fix change breaking sharekey functionalityHolly 'Frinkel' Lotor
2020-01-20fix code typomultiple creatures
2020-01-20More smoke testing, I believe the stability is passable nowHolly 'Frinkel' Lotor
2020-01-20More smoke testing, merge in request pool from upstreamHolly 'Frinkel' Lotor
2020-01-20Original upstream mergeThibG
2020-01-17Fix issue fetching new acctsHolly "Frinkeldoodle" Lotor
2020-01-17Comment out reference to var that hasn't been ported yetHolly "Frinkeldoodle" Lotor
2020-01-17Fix typoHolly "Frinkeldoodle" Lotor
2020-01-17Port render_with_cache, CacheConcern from upstreamHolly "Frinkeldoodle" Lotor
2020-01-15port commit `7e2bff995` from upstream to fix broken attachment downloadingmultiple creatures
2020-01-15port instances controller from upstreammultiple creatures
2020-01-15port new application controller error handlers from upstreammultiple creatures
2020-01-15anti-harassment: add option to toggle whether to allow follows/packmate ↵multiple creatures
requests from accounts you've never interacted with before; default to off
2020-01-14fix the "include past roars" buttonsmultiple creatures
2020-01-13add new privacy option to auto-defederate after a given timespan + add ↵multiple creatures
options to defederate and/or delete past posts + add `defed_in`/`parent:defed_in`/`thread:defed_in` bangtags + ui indicator for posts marked for auto-defederation
2020-01-12add privacy option to limit lifespan of public access to post & object urls ↵multiple creatures
beyond local followers, default to 90 days
2020-01-12allow sharekeys to be used with the api status controllermultiple creatures
2020-01-11move parenthesis to correct placemultiple creatures
2020-01-11move parenthesis to correct placemultiple creatures
2020-01-11move `monsterpit_api` helper to the application controllermultiple creatures
2020-01-11pass monsterfork api exposure setting to initial state serializermultiple creatures
2020-01-11use basic monsterfork api for anonymous clientsmultiple creatures
2020-01-11normalize app name when comparing against monsterfork api env varsmultiple creatures
2020-01-11pass monsterfork api exposure setting to all serializers + add ↵multiple creatures
`MONSTERFORK_API_FORCE_*` env vars to set api compatability modes for clients/apps
2020-01-10add option for changing the monsterfork api exposure level, defaulting to ↵multiple creatures
`full` - if this gives your app indigestion change it to back to `basic` in preferences
2020-01-10add custom filter master toggle, add media gallery mode, & fix various ↵multiple creatures
filter logic + caching bugs
2020-01-10add ability to toggle individual filters without deleting themmultiple creatures
2019-12-21add virtual scopes for `#``self.boosts` (your boosts) & ↵multiple creatures
`#``self.home.boosts` (boosts on your home timeline)
2019-12-21add option to only apply phrase filters to timelinesmultiple creatures
2019-12-21add option to use phrase filters as an allow listmultiple creatures
2019-12-21add option to set mutes that apply only to timelinesmultiple creatures
2019-12-19rework hide boosts / show only packmates options to work with timeline streamingmultiple creatures
2019-12-19add preference options to a: hide boosts globally, & b: show only packmates ↵multiple creatures
across all timelines - works in all client apps
2019-12-17remove unused `preload_media`multiple creatures
2019-12-11remove unused filter helpermultiple creatures
2019-12-11move sharekeys & import metadata to own tablesmultiple creatures
2019-12-10add accessibility option to make everything lowercasemultiple creatures
2019-12-10add synchronize button to account managermultiple creatures
2019-12-07add option to toggle whether regex filters should be applied to mentionsmultiple creatures
2019-12-05use `update` to change `curated` flagsmultiple creatures
2019-12-01correctly detect domain policy changesmultiple creatures
2019-11-29actually load the css on status pages (oops)multiple creatures
2019-11-19Fix login sometimes redirecting to paths that are not pages (#11019)Eugen Rochko
Fix #11016
2019-11-19Add waiting time to list of pending accounts in admin UI (#10985)Eugen Rochko
2019-11-19Cleanup various controllers (#10972)ThibG
* Remove skip_session! as it is not supported in Rails 5 * Minor cleanup in StreamEntriesController * Remove redundant mark_cacheable! calls
2019-11-19Fix potential private status leak (#10969)ThibG
2019-11-19Fix poll API not requiring authentication on non-public polls (#10960)Eugen Rochko
* Fix poll API not requiring authentication on non-public polls That API does not reveal the content of the status, i.e. the question itself, nor who the author is, nor which status it belongs to, but it does reveal the poll options and how many answers they got Fix #10959 * Add test