mirror of
https://github.com/Retrospring/retrospring.git
synced 2025-01-20 04:56:05 +01:00
7 lines
No EOL
186 B
Ruby
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 |