diff --git a/addons/website_forum/data/forum_data.xml b/addons/website_forum/data/forum_data.xml index 379e746be4f..8099bc56569 100644 --- a/addons/website_forum/data/forum_data.xml +++ b/addons/website_forum/data/forum_data.xml @@ -19,6 +19,7 @@ Forum self + diff --git a/addons/website_forum/static/src/js/website.tour.forum.js b/addons/website_forum/static/src/js/website.tour.forum.js index b4ca841463d..009b9a58356 100644 --- a/addons/website_forum/static/src/js/website.tour.forum.js +++ b/addons/website_forum/static/src/js/website.tour.forum.js @@ -4,28 +4,10 @@ var website = openerp.website; var _t = openerp._t; - // website.EditorBar.include({ - // start: function () { - // this.registerTour(new website.Tour.Forum(this)); - // return this._super(); - // }, - // }); - - // website.Tour.Forum = website.Tour.extend({ - // id: 'question', - // name: "Create a question", - // testPath: '/forum(/[0-9]+/register)?', - // init: function (editor) { - // var self = this; - // self.steps = [ - // { - // title: _t("Create a question"), - // content: _t("Let's go through the first steps to create a new question."), - // popover: { next: _("Start Tutorial"), end: _("Skip It") }, - // }, - // ]; - // return this._super(); - // } - // }); + openerp.Tour.register({ + id: 'forum', + name: '', + steps : [{}], + }); }());