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