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
|