Noosfero/noosfero

View on GitHub
plugins/custom_routes/lib/custom_routes_plugin.rb

Summary

Maintainability
A
0 mins
Test Coverage
class CustomRoutesPlugin < Noosfero::Plugin
  def self.plugin_name
    _("Custom Routes")
  end

  def self.plugin_description
    _("Add and manage custom route mappings")
  end

  def stylesheet?
    true
  end

  def js_files
    ["js/custom_routes.js"]
  end
end