Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add ID to recent endpoint #1

Merged
merged 1 commit into from Jan 24, 2016
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion app/controllers/posts_controller.rb
Expand Up @@ -9,7 +9,7 @@ def show

def recentpostsapi
posts = Rails.cache.fetch("last-posts", :expires_in => 30.seconds) do
Post.joins(:site).select("posts.title, posts.link, sites.site_logo").order(:created_at).last(100)
Post.joins(:site).select("posts.id, posts.title, posts.link, sites.site_logo").order(:created_at).last(100)
end

posts = posts.last([params[:size].to_i, 100].min).reverse
Expand Down