OpenProject is the leading open source project management software.
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.
 
 
 
 
 
 
openproject/app/controllers/scenarios_controller.rb

92 lines
2.1 KiB

#-- 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.
#++
class ScenariosController < ApplicationController
unloadable
helper :timelines
before_filter :disable_api
before_filter :find_project_by_project_id
before_filter :authorize
accept_key_auth :index, :show
def index
@scenarios = @project.scenarios
respond_to do |format|
format.html { render_404 }
end
end
def show
@scenario = @project.scenarios.find(params[:id])
respond_to do |format|
format.html { render_404 }
end
end
# Admin actions
def new
@scenario = @project.scenarios.new(:name => l('timelines.new_scenario'))
end
def create
@scenario = @project.scenarios.new(permitted_params.scenario)
if @scenario.save
flash[:notice] = l(:notice_successful_create)
redirect_to project_settings_path
else
render :action => 'new'
end
end
def edit
@scenario = @project.scenarios.find(params[:id])
end
def update
@scenario = @project.scenarios.find(params[:id])
if @scenario.update_attributes(permitted_params.scenario)
flash[:notice] = l(:notice_successful_update)
redirect_to project_settings_path
else
render :action => 'edit'
end
end
def confirm_destroy
@scenario = @project.scenarios.find(params[:id])
end
def destroy
@scenario = @project.scenarios.find(params[:id])
@scenario.destroy
flash[:notice] = l(:notice_successful_delete)
redirect_to project_settings_path
end
protected
def project_settings_path
url_for(:controller => '/projects', :action => 'settings', :tab => 'timelines', :id => @project)
end
helper_method :project_settings_path
def default_breadcrumb
[render_to_string(:inline => "<%= link_to(l(:label_settings), project_settings_path) %>"),
l('timelines.scenarios')]
end
end