mirror of
https://github.com/Retrospring/retrospring.git
synced 2025-01-20 04:46:02 +01:00
8 lines
235 B
Ruby
8 lines
235 B
Ruby
class GroupController < ApplicationController
|
|
before_filter :authenticate_user!
|
|
|
|
def index
|
|
@group = current_user.groups.find_by_name!(params[:group_name])
|
|
@timeline = @group.timeline.paginate(page: params[:page])
|
|
end
|
|
end
|