kanbanworkflowstimelinescrumrubyroadmapproject-planningproject-managementopenprojectangularissue-trackerifcgantt-chartganttbug-trackerboardsbcf
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
43 lines
1004 B
43 lines
1004 B
12 years ago
|
#-- copyright
|
||
|
# OpenProject is a project management system.
|
||
|
#
|
||
|
# Copyright (C) 2012-2013 the OpenProject Team
|
||
|
#
|
||
|
# This program is free software; you can redistribute it and/or
|
||
|
# modify it under the terms of the GNU General Public License version 3.
|
||
|
#
|
||
|
# See doc/COPYRIGHT.rdoc for more details.
|
||
|
#++
|
||
|
|
||
12 years ago
|
class PlanningElementJournalsController < ApplicationController
|
||
12 years ago
|
unloadable
|
||
|
helper :timelines
|
||
|
|
||
12 years ago
|
include ExtendedHTTP
|
||
12 years ago
|
|
||
|
before_filter :find_project_by_project_id
|
||
|
before_filter :find_planning_element_by_planning_element_id
|
||
|
before_filter :authorize
|
||
|
|
||
|
accept_key_auth :index, :create
|
||
|
|
||
|
def index
|
||
|
@journals = @planning_element.journals
|
||
|
respond_to do |format|
|
||
|
format.html { render_404 }
|
||
|
format.api
|
||
|
end
|
||
|
end
|
||
|
|
||
|
def create
|
||
|
raise NotImplementedError
|
||
|
end
|
||
|
|
||
|
protected
|
||
|
|
||
|
def find_planning_element_by_planning_element_id
|
||
|
raise ActiveRecord::RecordNotFound if @project.blank?
|
||
12 years ago
|
@planning_element = @project.planning_elements.find(params[:planning_element_id])
|
||
12 years ago
|
end
|
||
|
end
|