2017-09-18 17:51:36 -07:00
|
|
|
/**
|
|
|
|
|
* Defines the props for the feedback mailto: link
|
|
|
|
|
* @type {object}
|
|
|
|
|
*/
|
2017-09-10 19:31:54 -07:00
|
|
|
const feedback = { mail: 'wherehows-dev@linkedin.com', subject: 'WhereHows Feedback', title: 'Provide Feedback' };
|
|
|
|
|
|
2017-09-18 17:51:36 -07:00
|
|
|
/**
|
|
|
|
|
* Defines the properties for the navigation bar avatar
|
|
|
|
|
* @type {object}
|
|
|
|
|
*/
|
2017-09-10 19:31:54 -07:00
|
|
|
const avatar = {
|
|
|
|
|
url: 'https://cinco.corp.linkedin.com/api/profile/[username]/picture/?access_token=2rzmbzEMGlHsszQktFY-B1TxUic',
|
|
|
|
|
fallbackUrl: '/assets/assets/images/default_avatar.png'
|
|
|
|
|
};
|
|
|
|
|
|
2018-08-10 12:03:56 -07:00
|
|
|
export { feedback, avatar };
|