retrospring/app/controllers/group_controller.rb
2015-01-13 13:23:12 +01:00

7 lines
No EOL
186 B
Ruby

class GroupController < ApplicationController
before_filter :index
def index
@timeline = Group.find_by_name(params[:group_name]).timeline.paginate(page: params[:page])
end
end