Skip to content

Instantly share code, notes, and snippets.

@erkattak
Created July 24, 2013 21:21
Show Gist options
  • Save erkattak/6074677 to your computer and use it in GitHub Desktop.
Save erkattak/6074677 to your computer and use it in GitHub Desktop.
Should the aggregate feed be empty here?
irb(main):001:0> ActivityFeedItem.all
ActivityFeedItem Load (4.1ms) SELECT "activity_feed_items".* FROM "activity_feed_items"
=> [#<ActivityFeedItem id: 1, municipality_id: 1, nickname: "Coin Door Closed", item_type: "sentry_alert", title: "coin_vault_door_closed", text: "DIGI DUAL 2: Coin Door Closed ", created_at: "2013-07-24 21:03:30", updated_at: "2013-07-24 21:03:30">]
irb(main):002:0> ActivityFeed.feed 1, 1
ActivityFeedItem Load (787.7ms) SELECT "activity_feed_items".* FROM "activity_feed_items" WHERE (id in ('1','30','29','28','27'))
=> [#<ActivityFeedItem id: 1, municipality_id: 1, nickname: "Coin Door Closed", item_type: "sentry_alert", title: "coin_vault_door_closed", text: "DIGI DUAL 2: Coin Door Closed ", created_at: "2013-07-24 21:03:30", updated_at: "2013-07-24 21:03:30">]
irb(main):003:0> ActivityFeed.feed 1, 1
ActivityFeedItem Load (1.6ms) SELECT "activity_feed_items".* FROM "activity_feed_items" WHERE (id in ('1','30','29','28','27'))
=> [#<ActivityFeedItem id: 1, municipality_id: 1, nickname: "Coin Door Closed", item_type: "sentry_alert", title: "coin_vault_door_closed", text: "DIGI DUAL 2: Coin Door Closed ", created_at: "2013-07-24 21:03:30", updated_at: "2013-07-24 21:03:30">]
irb(main):004:0> ActivityFeed.feed 1, 1, true
ActivityFeedItem Load (2.6ms) SELECT "activity_feed_items".* FROM "activity_feed_items" WHERE (id in (NULL))
=> []
irb(main):005:0>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment