summaryrefslogtreecommitdiffstats
path: root/etherpad/src/plugins/twitterStyleTags/hooks.js
blob: 65aef831da1b7636bd073848b1325a368bf86390 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
import("etherpad.log");
import("dispatch.{Dispatcher,PrefixMatcher,forward}");
import("plugins.twitterStyleTags.controllers.tagBrowser");

function aceGetFilterStack() {
 log.info("aceGetFilterStack");
 return [];
}

function handlePath() {
 return [[PrefixMatcher('/ep/tags/'), forward(tagBrowser)]];
}