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/rb_wikis_controller.rb

13 lines
511 B

class RbWikisController < RbApplicationController
unloadable
def show
sprint = Sprint.first(:conditions => { :project_id => @project.id, :id => params[:sprint_id]})
redirect_to :controller => 'wiki', :action => 'index', :id => @project.id, :page => sprint.wiki_page
end
def edit
sprint = Sprint.first(:conditions => { :project_id => @project.id, :id => params[:sprint_id]})
redirect_to :controller => 'wiki', :action => 'edit', :id => @project.id, :page => sprint.wiki_page
end
end