mirror of
https://github.com/Retrospring/retrospring.git
synced 2025-02-01 06:19:08 +01:00
7 lines
186 B
Ruby
7 lines
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
|