cirandas.net

ref: master

plugins/custom_routes/lib/custom_routes_plugin.rb


 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
class CustomRoutesPlugin < Noosfero::Plugin

  def self.plugin_name
    "Custom Routes Plugin"
  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