Skip to content
Snippets Groups Projects
  1. Mar 07, 2022
  2. Feb 25, 2022
  3. Feb 11, 2022
  4. Oct 14, 2021
  5. Feb 21, 2021
  6. Jan 22, 2021
  7. Jan 09, 2021
  8. Dec 14, 2020
  9. Jun 30, 2020
    • ThibG's avatar
      Add user notes on accounts (#14148) · 65506bac
      ThibG authored
      * Add UserNote model
      
      * Add UI for user notes
      
      * Put comment in relationships entity
      
      * Add API to create user notes
      
      * Copy user notes to new account when receiving a Move activity
      
      * Address some of the review remarks
      
      * Replace modal by inline edition
      
      * Please CodeClimate
      
      * Button design changes
      
      * Change design again
      
      * Cancel note edition when pressing Escape
      
      * Fixes
      
      * Tweak design again
      
      * Move “Add note” item, and allow users to add notes to themselves
      
      * Rename UserNote into AccountNote, rename “comment” Relationship attribute to “note”
      65506bac
  10. Jun 08, 2020
  11. Jun 02, 2020
  12. Nov 28, 2019
  13. Nov 13, 2019
    • ThibG's avatar
      Add bookmarks (#7107) · dfea7368
      ThibG authored
      * Add backend support for bookmarks
      
      Bookmarks behave like favourites, except they aren't shared with other
      users and do not have an associated counter.
      
      * Add spec for bookmark endpoints
      
      * Add front-end support for bookmarks
      
      * Introduce OAuth scopes for bookmarks
      
      * Add bookmarks to archive takeout
      
      * Fix migration
      
      * Coding style fixes
      
      * Fix rebase issue
      
      * Update bookmarked_statuses to latest UI changes
      
      * Update bookmark actions to properly reflect status changes in state
      
      * Add bookmarks item to single-column layout
      
      * Make active bookmarks red
      dfea7368
  14. Nov 07, 2019
  15. Sep 30, 2019
  16. Sep 29, 2019
    • Eugen Rochko's avatar
      Add a nodeinfo endpoint (#12002) · 5f69eb89
      Eugen Rochko authored
      * Add nodeinfo endpoint
      
      * dont commit stuff from my local dev
      
      * consistant naming since we implimented 2.1 schema
      
      * Add some additional node info stuff
      
      * Add nodeinfo endpoint
      
      * dont commit stuff from my local dev
      
      * consistant naming since we implimented 2.1 schema
      
      * expanding this to include federation info
      
      * codeclimate feedback
      
      * CC feedback
      
      * using activeserializers seems like a good idea...
      
      * get rid of draft 2.1 version
      
      * Reimplement 2.1, also fix metaData -> metadata
      
      * Fix metaData -> metadata here too
      
      * Fix nodeinfo 2.1 tests
      
      * Implement cache for monthly user aggregate
      
      * Useless
      
      * Remove ostatus from the list of supported protocols
      
      * Fix nodeinfo's open_registration reading obsolete setting variable
      
      * Only serialize domain blocks with user-facing limitations
      
      * Do not needlessly list noop severity in nodeinfo
      
      * Only serialize domain blocks info in nodeinfo when they are set to be displayed to everyone
      
      * Enable caching for nodeinfo endpoints
      
      * Fix rendering nodeinfo
      
      * CodeClimate fixes
      
      * Please CodeClimate
      
      * Change InstancePresenter#active_user_count_months for clarity
      
      * Refactor NodeInfoSerializer#metadata
      
      * Remove nodeinfo 2.1 support as the schema doesn't exist
      
      * Clean-up
      5f69eb89
  17. Sep 17, 2019
  18. Apr 07, 2019
    • Eugen Rochko's avatar
      Improve blocked view of profiles (#10491) · 67b3b62b
      Eugen Rochko authored
      * Revert "Fix filtering of favourited_by, reblogged_by, followers and following (#10447)"
      
      This reverts commit 12054406.
      
      * Revert "Hide blocking accounts from blocked users (#10442)"
      
      This reverts commit 62bafa20.
      
      * Improve blocked view of profiles
      
      - Change "You are blocked" to "Profile unavailable"
      - Hide following/followers in API when blocked
      - Disable follow button and show "Profile unavailable" on public profile as well
      67b3b62b
  19. Apr 06, 2019
  20. Apr 01, 2019
    • ThibG's avatar
      Hide blocking accounts from blocked users (#10442) · 62bafa20
      ThibG authored
      * Revert "Add indication that you have been blocked in web UI (#10420)"
      
      This reverts commit bd02ec6d.
      
      * Revert "Add `blocked_by` relationship to the REST API (#10373)"
      
      This reverts commit 9745de88.
      
      * Hide blocking accounts from search results
      
      * Filter blocking accouts from account followers
      
      * Filter blocking accouts from account's following accounts
      
      * Filter blocking accounts from “reblogged by” and “favourited by” lists
      
      * Remove blocking account from URL search
      
      * Return 410 on trying to fetch user data from a user who blocked us
      
      * Return 410 in /api/v1/account/statuses for suspended or blocking accounts
      
      * Fix status filtering when performing URL search
      
      * Restore some React improvements
      
      Restore some cleanup from bd02ec6d
      
      * Refactor by adding `without_blocking` scope
      62bafa20
  21. Mar 26, 2019
  22. Mar 23, 2019
  23. Mar 14, 2019
  24. Mar 13, 2019
  25. Mar 12, 2019
  26. Feb 28, 2019
    • ThibG's avatar
      Improved remote thread fetching (#10106) · 9d3c6f18
      ThibG authored
      * Fetch up to 5 replies when discovering a new remote status
      
      This is used for resolving threads downwards. The originating
      server must add a “replies” attributes with such replies for it to
      be useful.
      
      * Add some tests for ActivityPub::FetchRepliesWorker
      
      * Add specs for ActivityPub::FetchRepliesService
      
      * Serialize up to 5 public self-replies for ActivityPub notes
      
      * Add specs for ActivityPub::NoteSerializer
      
      * Move exponential backoff logic to a worker concern
      
      * Fetch first page of paginated collections when fetching thread replies
      
      * Add specs for paginated collections in replies
      
      * Move Note replies serialization to a first CollectionPage
      
      The collection isn't actually paginable yet as it has no id nor
      a `next` field. This may come in another PR.
      
      * Use pluck(:uri) instead of map(&:uri) to improve performances
      
      * Fix fetching replies when they are in a CollectionPage
      9d3c6f18
  27. Nov 27, 2018
  28. Nov 20, 2018
  29. Nov 18, 2018
  30. Oct 07, 2018
  31. Aug 24, 2018
  32. Aug 09, 2018
  33. Jul 31, 2018
  34. May 04, 2018
  35. Feb 22, 2018
    • Eugen Rochko's avatar
      Redesign landing page (again) (#6486) · c71aa468
      Eugen Rochko authored
      * Redesign landing page (again)
      
      * Move login form in small version to the right column
      
      * Display closed registrations message
      
      * Add site setting for the hero image
      
      * Fix test
      
      * Increase spacing, maximum width, change call to action section
      c71aa468
  36. Feb 21, 2018
  37. Feb 18, 2018
  38. Dec 06, 2017
  39. Sep 24, 2017
  40. Sep 19, 2017
Loading