Skip to content
Snippets Groups Projects
  1. Jan 28, 2019
  2. Jan 18, 2019
    • ThibG's avatar
      Add tombstones for remote statuses (#9830) · 75b1488c
      ThibG authored
      * Add Tombstone model to remember object deletion
      
      * Do not recreate a status if it has been deleted
      
      * Record Tombstone for remote deleted items
      
      Also, only record deleted items from same-host actors
      
      * Clear an user's tombstones when their key change
      75b1488c
  3. Jan 07, 2019
  4. Jan 06, 2019
  5. Jan 05, 2019
  6. Dec 29, 2018
  7. Dec 24, 2018
    • Eugen Rochko's avatar
      Add REST API for creating an account (#9572) · 5d2fc6de
      Eugen Rochko authored
      * Add REST API for creating an account
      
      The method is available to apps with a token obtained via the client
      credentials grant. It creates a user and account records, as well as
      an access token for the app that initiated the request. The user is
      unconfirmed, and an e-mail is sent as usual.
      
      The method returns the access token, which the app should save for
      later. The REST API is not available to users with unconfirmed
      accounts, so the app must be smart to wait for the user to click a
      link in their e-mail inbox.
      
      The method is rate-limited by IP to 5 requests per 30 minutes.
      
      * Redirect users back to app from confirmation if they were created with an app
      
      * Add tests
      
      * Return 403 on the method if registrations are not open
      
      * Require agreement param to be true in the API when creating an account
      Unverified
      5d2fc6de
  8. Dec 22, 2018
    • Eugen Rochko's avatar
      Add moderation warnings (#9519) · 3c033c43
      Eugen Rochko authored
      * Add moderation warnings
      
      Replace individual routes for disabling, silencing, and suspending
      a user, as well as the report update route, with a unified account
      action controller that allows you to select an action (none,
      disable, silence, suspend) as well as whether it should generate an
      e-mail notification with optional custom text. That notification,
      with the optional custom text, is saved as a warning.
      
      Additionally, there are warning presets you can configure to save
      time when performing the above.
      
      * Use Account#local_username_and_domain
      Unverified
      3c033c43
  9. Dec 11, 2018
  10. Dec 06, 2018
  11. Nov 27, 2018
    • Eugen Rochko's avatar
      Change identities id column to a bigint (#9371) · 4afda544
      Eugen Rochko authored
      * fix: change Identity's id column to a bigint
      
      This appears to be the last model created using a 5.0 migration,
      where column types defaulted to `integer` rather than `bigint`.
      
      This migration changes the column type to match that of all of the
      other ID columns.
      
      * Change user_id column in identities to bigint and fix down-migration
      Unverified
      4afda544
  12. Nov 18, 2018
  13. Oct 30, 2018
  14. Oct 28, 2018
  15. Oct 26, 2018
  16. Oct 24, 2018
  17. Oct 20, 2018
  18. Oct 18, 2018
  19. Oct 17, 2018
    • Eugen Rochko's avatar
      Improve support for aspects/circles (#8950) · ddd30f33
      Eugen Rochko authored
      * Add silent column to mentions
      
      * Save silent mentions in ActivityPub Create handler and optimize it
      
      Move networking calls out of the database transaction
      
      * Add "limited" visibility level masked as "private" in the API
      
      Unlike DMs, limited statuses are pushed into home feeds. The access
      control rules between direct and limited statuses is almost the same,
      except for counter and conversation logic
      
      * Ensure silent column is non-null, add spec
      
      * Ensure filters don't check silent mentions for blocks/mutes
      
      As those are "this person is also allowed to see" rather than "this
      person is involved", therefore does not warrant filtering
      
      * Clean up code
      
      * Use Status#active_mentions to limit returned mentions
      
      * Fix code style issues
      
      * Use Status#active_mentions in Notification
      
      And remove stream_entry eager-loading from Notification
      Unverified
      ddd30f33
  20. Oct 09, 2018
  21. Oct 07, 2018
  22. Oct 04, 2018
  23. Aug 21, 2018
  24. Aug 19, 2018
  25. Aug 18, 2018
  26. Aug 15, 2018
  27. Aug 14, 2018
  28. Aug 13, 2018
  29. Aug 12, 2018
  30. Aug 11, 2018
  31. Aug 09, 2018
  32. Jul 15, 2018
  33. Jul 13, 2018
  34. Jul 09, 2018
  35. Jun 29, 2018
    • Eugen Rochko's avatar
      Keyword/phrase filtering (#7905) · cdb10134
      Eugen Rochko authored
      * Add keyword filtering
      
          GET|POST       /api/v1/filters
          GET|PUT|DELETE /api/v1/filters/:id
      
      - Irreversible filters can drop toots from home or notifications
      - Other filters can hide toots through the client app
      - Filters use a phrase valid in particular contexts, expiration
      
      * Make sure expired filters don't get applied client-side
      
      * Add missing API methods
      
      * Remove "regex filter" from column settings
      
      * Add tests
      
      * Add test for FeedManager
      
      * Add CustomFilter test
      
      * Add UI for managing filters
      
      * Add streaming API event to allow syncing filters
      
      * Fix tests
      Unverified
      cdb10134
Loading