Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save davidmyersdev/fa7c08933c4b40a197289dc3017668f5 to your computer and use it in GitHub Desktop.
Save davidmyersdev/fa7c08933c4b40a197289dc3017668f5 to your computer and use it in GitHub Desktop.
Interpolating data into Rails views -- Controller segment
# app/controllers/notifications_controller.rb
class NotificationsController < ApplicationController
helper_method :notifications
def index
# automatically renders app/views/notifications/index.html.erb
end
private
def notifications
Notification.all
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment