blob: dc370a4627794017baabc7aa3599e5bdd59799fc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
odoo.define('lunch.LunchKanbanController', function (require) {
"use strict";
/**
* This file defines the Controller for the Lunch Kanban view, which is an
* override of the KanbanController.
*/
var KanbanController = require('web.KanbanController');
var LunchControllerCommon = require('lunch.LunchControllerCommon');
var LunchKanbanController = KanbanController.extend(LunchControllerCommon , {
custom_events: _.extend({}, KanbanController.prototype.custom_events, LunchControllerCommon.custom_events),
});
return LunchKanbanController;
});
|