forgot the @

This commit is contained in:
nilsding 2015-01-17 19:14:18 +01:00
parent f714e8d0e2
commit 2ffd514bf1
1 changed files with 1 additions and 1 deletions

View File

@ -3,6 +3,6 @@ class GroupController < ApplicationController
def index
@group = current_user.groups.find_by_name!(params[:group_name])
@timeline = group.timeline.paginate(page: params[:page])
@timeline = @group.timeline.paginate(page: params[:page])
end
end