ember-cli-profitwell

0.1.3 • Public • Published

ember-cli-profitwell

Greenkeeper badge

This addon inserts the ProfitWell script into the <head> of the page for you.

Installation

ember install ember-cli-profitwell

After installing the addon, you MUST provide a configuration value for your authentication token.

Configuration

You can configure some of the variables used in the inserted script.

// config/environment.js
 
ENV['ember-cli-profitwell'] = {
  enabledEnvironments: ['production'], // default
  authToken: 'YourAuthToken'           // required, no default
};

Usage

The addon exposes a profitwell service through which you can set the email of the current logged in user.

// some component/controller/route
 
profitwell: Ember.inject.service(),
 
onLogin(userEmail) {
  this.get('profitwell').setUserEmail(userEmail);
}
 
...

Readme

Keywords

Package Sidebar

Install

npm i ember-cli-profitwell

Weekly Downloads

0

Version

0.1.3

License

MIT

Unpacked Size

471 kB

Total Files

10

Last publish

Collaborators

  • yoranbrondsema