Last active
December 20, 2015 20:09
-
-
Save adamrneary/6188669 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ParentCollection = require('collections/common/parent_collection') | |
Channel = require('models/channel') | |
module.exports = class Channels extends ParentCollection | |
model: Channel | |
modelSingular: 'channel' | |
driverLabel: 'Cost driver' | |
driverList: | |
exclude: 'Exclude this channel from the plan' | |
manual: 'Forecast this channel manually' | |
percent_revenue: 'Forecast top down: Percent of revenue' | |
new_customer_count: 'Forecast bottom up: Cost per new customer' | |
driverDefault: 'manual' | |
valueLabel: 'Spend' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment