Skip to content

Instantly share code, notes, and snippets.

@alicethewhale
Last active November 22, 2018 16:21
Show Gist options
  • Save alicethewhale/c04bedb9a85d882e2ae8e314ab3c946a to your computer and use it in GitHub Desktop.
Save alicethewhale/c04bedb9a85d882e2ae8e314ab3c946a to your computer and use it in GitHub Desktop.
def self.timeline_subquery(lead)
select('lead_alerts.id AS id', 'lead_alerts.action AS body', 'users.first_name AS first_name', 'users.last_name AS last_name', 'lead_alerts.due_on AS date', '"lead_alerts" AS model')
.left_joins(:author)
.where(lead_id: lead)
End
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment