15 lines
629 B
JavaScript
15 lines
629 B
JavaScript
/**
|
|
* This file defines the list of feature flags available in the app.
|
|
*/
|
|
'use strict';
|
|
|
|
module.exports = [
|
|
'unit-test', // Flag used for unit testing. DO NOT REMOVE
|
|
'cardpayments', // Allow card based payments for this client.
|
|
'diligence', // Enables customer due diligence verification
|
|
'tokens', // Allow tokens for the integration API to be created and used
|
|
'invoices', // Allow invoices functionality.
|
|
'messages', // The messaging centre is enabled and should be shown. Login messages should be shown regardless.
|
|
'vat' // Allow VAT functionality
|
|
];
|