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