Personalisation: ServerApi

Some personalisation options are related directly to the server setup

Email company info

To change your app name and company information as it appears in the emails send out by your app, visit /constants.js and replace the strings in the 'CHANGE FOR YOUR COMPANY AND APP INFORMATION SETTINGS' section with your own.

- default is:

exports.COMPANY_INFO = { 
  app_name: 'Share App', 
  company_name: 'Share', 
  app_emailaddress: 'info@knowlephant.com', 
  address: 'Company address', 
};

To let all new posts expire automatically after 24 hours, visit /constants.js and set the 'CHANGE POST AUTO-DELETE SETTING' to true / false .

- default is:

exports.ENABLE_POST_SELF_DESTRUCT = true;

Display settings suggestions switch

To display / hide a switch item in users's settings menu that allows users to control how the app suggests other users and posts, visit /constants.js and set the 'DISPLAY SUGGESTIONS CONTROL SWITCH TO USER SETTINGS' to true / false .

- default is:

exports.ENABLE_CONTROL_SUGGESTIONS = true;

Globally set suggested people & posts based on user interests

If you decide to set the previous setting to false -- this will hide the switch item from users's settings screens -- you have the option to control whether or not your app displays suggested people & posts only. To change this setting, visit /constants.js and set the 'DISPLAY SUGGESTED PEOPLE & POSTS BASED ON USER'S SELECTED INTERESTS GLOBAL SETTING' to true or false.

- default is:

exports.ENABLE_SUGGESTIONS = true;

Last updated