mirror of
https://github.com/fleetdm/fleet
synced 2026-05-14 12:38:41 +00:00
50 lines
1.6 KiB
JavaScript
50 lines
1.6 KiB
JavaScript
|
|
/**
|
||
|
|
* Quote.js
|
||
|
|
*
|
||
|
|
* @description :: A model definition represents a database table/collection.
|
||
|
|
* @docs :: https://sailsjs.com/docs/concepts/models-and-orm/models
|
||
|
|
*/
|
||
|
|
|
||
|
|
module.exports = {
|
||
|
|
|
||
|
|
attributes: {
|
||
|
|
|
||
|
|
// ╔═╗╦═╗╦╔╦╗╦╔╦╗╦╦ ╦╔═╗╔═╗
|
||
|
|
// ╠═╝╠╦╝║║║║║ ║ ║╚╗╔╝║╣ ╚═╗
|
||
|
|
// ╩ ╩╚═╩╩ ╩╩ ╩ ╩ ╚╝ ╚═╝╚═╝
|
||
|
|
organization: { // Note: the current organization exists on the user model, this reflects the organization at the time the quote was created.
|
||
|
|
type: 'string',
|
||
|
|
description: 'The organization the user entered when they generated a quote',
|
||
|
|
maxLength: 120,
|
||
|
|
},
|
||
|
|
|
||
|
|
numberOfHosts: {
|
||
|
|
type: 'number',
|
||
|
|
description: 'The number of hosts the user wants a license for',
|
||
|
|
required: true,
|
||
|
|
},
|
||
|
|
|
||
|
|
quotedPrice: {
|
||
|
|
type: 'number',
|
||
|
|
description: 'The price of the Fleet Premium license that was quoted to the user',
|
||
|
|
required: true,
|
||
|
|
},
|
||
|
|
|
||
|
|
// ╔═╗╔╦╗╔╗ ╔═╗╔╦╗╔═╗
|
||
|
|
// ║╣ ║║║╠╩╗║╣ ║║╚═╗
|
||
|
|
// ╚═╝╩ ╩╚═╝╚═╝═╩╝╚═╝
|
||
|
|
|
||
|
|
|
||
|
|
// ╔═╗╔═╗╔═╗╔═╗╔═╗╦╔═╗╔╦╗╦╔═╗╔╗╔╔═╗
|
||
|
|
// ╠═╣╚═╗╚═╗║ ║║ ║╠═╣ ║ ║║ ║║║║╚═╗
|
||
|
|
// ╩ ╩╚═╝╚═╝╚═╝╚═╝╩╩ ╩ ╩ ╩╚═╝╝╚╝╚═╝
|
||
|
|
user: {
|
||
|
|
model: 'User',
|
||
|
|
required: true,
|
||
|
|
description: 'The user who created this quote.'
|
||
|
|
},
|
||
|
|
},
|
||
|
|
|
||
|
|
};
|
||
|
|
|