Project tab r1 is finished

This commit is contained in:
Dmitriy Zaporozhets 2011-12-30 08:54:42 +02:00
parent c1c903fb95
commit 0f627a65f4
16 changed files with 128 additions and 53 deletions

View file

@ -57,7 +57,7 @@ class ProjectsController < ApplicationController
def update
respond_to do |format|
if project.update_attributes(params[:project])
format.html { redirect_to project, :notice => 'Project was successfully updated.' }
format.html { redirect_to info_project_path(project), :notice => 'Project was successfully updated.' }
format.js
else
format.html { render action: "edit" }
@ -67,16 +67,16 @@ class ProjectsController < ApplicationController
end
def show
return render "projects/empty" unless @project.repo_exists? && @project.has_commits?
limit = (params[:limit] || 20).to_i
@activities = @project.cached_updates(limit)
end
def files
@notes = @project.notes.where("attachment != 'NULL'").order("created_at DESC")
end
def activities
return render "projects/empty" unless @project.repo_exists? && @project.has_commits?
limit = (params[:limit] || 20).to_i
@activities = @project.cached_updates(limit)
def info
end
#