Skip to content
This repository has been archived by the owner on Apr 26, 2019. It is now read-only.

Commit

Permalink
fix #432 load more activities
Browse files Browse the repository at this point in the history
Loading to few activities can cause claims not being displayed as claims
and bounties are loaded via separate XHR requests. This change
implements a quick fix around that making old activities show up.

Long term we should move claims into the response of `/api/open-bounties`
so that they always are available for bounties shown in the UI.

This is also somewhat related to better API pagination as described in
#250
  • Loading branch information
martinklepsch committed May 3, 2018
1 parent 5e4a4bf commit 7223117
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion resources/sql/queries.sql
Original file line number Diff line number Diff line change
Expand Up @@ -634,7 +634,7 @@ SELECT
updated
FROM activity_feed_view
ORDER BY updated DESC
LIMIT 100;
LIMIT 1000;

-- :name get-new-users-for-welcome-email :? :*
-- :doc users who have not been sent a welcome email
Expand Down

0 comments on commit 7223117

Please sign in to comment.