bridge-node-server/node_server/utils/feature-flags/flags-list.js
Martin Donnelly 57bd6c8e6a init
2018-06-24 21:15:03 +01:00

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
];