ApiBootstraper/Api-documentation

View on GitHub
app/controllers/changelogs_controller.rb

Summary

Maintainability
A
0 mins
Test Coverage
class ChangelogsController < ApplicationController

  def show
    @version = Version.find_by_slug!(params[:version])
    add_breadcrumb 'REST API', 'rest_path'
    add_breadcrumb @version.name, url_for(:action => 'show', :controller => 'versions', :version => @version.slug)
    add_breadcrumb 'Changelog'
  end

end