Skip to content
Snippets Groups Projects
  1. Jun 14, 2017
  2. May 18, 2017
  3. May 17, 2017
  4. May 16, 2017
  5. May 15, 2017
  6. May 13, 2017
    • Pablo Saavedra's avatar
      Configurable maximum number of events requested by /sync and /messages (#2220) · 9da4316c
      Pablo Saavedra authored
      Set the limit on the returned events in the timeline in the get and sync
      operations. The default value is -1, means no upper limit.
      
      For example, using `filter_timeline_limit: 5000`:
      
      POST /_matrix/client/r0/user/user:id/filter
      {
      room: {
          timeline: {
            limit: 1000000000000000000
          }
      }
      }
      
      GET /_matrix/client/r0/user/user:id/filter/filter:id
      
      {
      room: {
          timeline: {
            limit: 5000
          }
      }
      }
      
      The server cuts down the room.timeline.limit.
      9da4316c
  7. May 11, 2017
Loading