Security News
cURL Project and Go Security Teams Reject CVSS as Broken
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.
ember-cli-intercom-messenger
Advanced tools
Intercom messenger for Ember with support for custom attributes.
Install with ember install ember-cli-intercom-messenger
.
You must provide your Intercom app ID in your app's config/environment.js
file.
module.exports = function(environment) {
var ENV = {
'intercom-messenger': {
appId: null,
enabled: false // Optional: Disable the addon on a per environment basis.
},
};
return ENV;
}
In your app/controllers/application.js
:
import Controller from 'ember-controller';
import computed from 'ember-computed';
export default Controller.extend({
user: null,
intercomSettings: computed(function() {
return {
user_id: this.get('user.id'),
user_hash: this.get('user.hash')
};
})
});
In your app/templates/application.hbs
:
{{intercom-messenger intercomSettings}}
{{!-- or, without the need for a computed property with the {{hash}} helper: --}}
{{intercom-messenger (hash
user_id=user.id
user_hash=user.hash
)}}
Note that {{intercom-messenger}}
allows you to define any custom attributes within intercomSettings
.
Just remember to adhere to Intercom's guideline on sending custom attributes.
git clone <repository-url>
this repositorycd ember-cli-intercom-messenger
npm install
ember serve
npm test
(Runs ember try:each
to test your addon against multiple Ember versions)ember test
ember test --server
ember build
For more information on using ember-cli, visit https://ember-cli.com/.
FAQs
Intercom messenger for Ember.
We found that ember-cli-intercom-messenger demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.
Security News
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.
Security News
Biden's executive order pushes for AI-driven cybersecurity, software supply chain transparency, and stronger protections for federal and open source systems.