liquid_feedback_frontend
view env/lf4rcs/init.lua @ 1225:ebb3c5fa158d
Removed exhaustive GROUP BY list in Issue:get_search_selector(...) due to PRIMARY KEY (PostgreSQL 9.1 feature)
author | jbe |
---|---|
date | Tue Dec 01 16:43:54 2015 +0100 (2015-12-01) |
parents | 30523f31b186 |
children | 32cc544d5a5b |
line source
1 function lf4rcs.init()
2 local super_handler = config.notification_handler_func
3 config.notification_handler_func = function(event)
4 if super_handler then super_handler(event) end
5 lf4rcs.notification_handler(event)
6 end
7 config.render_external_reference = {
8 draft = lf4rcs.render_draft_reference,
9 initiative = lf4rcs.render_initiative_reference
10 }
11 end