init commit
This commit is contained in:
parent
93efff9452
commit
9ba1224867
307 changed files with 11053 additions and 0 deletions
72
app/controllers/issues_controller.rb
Normal file
72
app/controllers/issues_controller.rb
Normal file
|
@ -0,0 +1,72 @@
|
|||
class IssuesController < ApplicationController
|
||||
before_filter :authenticate_user!
|
||||
before_filter :project
|
||||
|
||||
# Authorize
|
||||
before_filter :add_project_abilities
|
||||
before_filter :authorize_read_issue!
|
||||
before_filter :authorize_write_issue!, :only => [:new, :create, :close, :edit, :update]
|
||||
before_filter :authorize_admin_issue!, :only => [:destroy]
|
||||
|
||||
respond_to :js
|
||||
|
||||
def index
|
||||
@issues = case params[:f].to_i
|
||||
when 1 then @project.issues.all
|
||||
when 2 then @project.issues.closed
|
||||
when 3 then @project.issues.opened.assigned(current_user)
|
||||
else @project.issues.opened
|
||||
end
|
||||
|
||||
respond_to do |format|
|
||||
format.html # index.html.erb
|
||||
format.js
|
||||
end
|
||||
end
|
||||
|
||||
def new
|
||||
@issue = @project.issues.new
|
||||
respond_with(@issue)
|
||||
end
|
||||
|
||||
def edit
|
||||
@issue = @project.issues.find(params[:id])
|
||||
respond_with(@issue)
|
||||
end
|
||||
|
||||
def show
|
||||
@issue = @project.issues.find(params[:id])
|
||||
@notes = @issue.notes
|
||||
@note = @project.notes.new(:noteable => @issue)
|
||||
end
|
||||
|
||||
def create
|
||||
@issue = @project.issues.new(params[:issue])
|
||||
@issue.author = current_user
|
||||
if @issue.save
|
||||
Notify.new_issue_email(@issue).deliver
|
||||
end
|
||||
|
||||
respond_with(@issue)
|
||||
end
|
||||
|
||||
def update
|
||||
@issue = @project.issues.find(params[:id])
|
||||
@issue.update_attributes(params[:issue])
|
||||
|
||||
respond_to do |format|
|
||||
format.js
|
||||
format.html { redirect_to [@project, @issue]}
|
||||
end
|
||||
end
|
||||
|
||||
|
||||
def destroy
|
||||
@issue = @project.issues.find(params[:id])
|
||||
@issue.destroy
|
||||
|
||||
respond_to do |format|
|
||||
format.js { render :nothing => true }
|
||||
end
|
||||
end
|
||||
end
|
Loading…
Add table
Add a link
Reference in a new issue