server/bo_client/app/helpers/add-one.js
author nowmad@23.1.168.192.in-addr.arpa
Thu, 17 Dec 2015 12:22:17 +0100
changeset 70 ad554d876c81
parent 20 a9b98b16b053
permissions -rw-r--r--
remove model to use the general one the application fetch on the first load

import Ember from 'ember';

export function addOne(params) {
  return params[0] + 1;
}

export default Ember.Helper.helper(addOne);