travis-web/app/components/sync-button.js
2016-01-04 13:15:14 +01:00

11 lines
177 B
JavaScript

import Ember from 'ember';
export default Ember.Component.extend({
classNames: ["sync-button"],
actions: {
sync() {
return this.get('user').sync();
}
}
});