travis-web/app/models/hook.js
2016-01-04 13:15:15 +01:00

38 lines
941 B
JavaScript

import Ember from 'ember';
import Model from 'travis/models/model';
import config from 'travis/config/environment';
import DS from 'ember-data';
export default Model.extend({
name: DS.attr(),
ownerName: DS.attr(),
description: DS.attr(),
active: DS.attr('boolean'),
admin: DS.attr('boolean'),
"private": DS.attr('boolean'),
account: function() {
return this.get('slug').split('/')[0];
}.property('slug'),
slug: function() {
return (this.get('ownerName')) + "/" + (this.get('name'));
}.property('ownerName', 'name'),
urlGithub: function() {
return config.sourceEndpoint + "/" + (this.get('slug'));
}.property(),
urlGithubAdmin: function() {
return config.sourceEndpoint + "/" + (this.get('slug')) + "/settings/hooks#travis_minibucket";
}.property(),
toggle() {
if (this.get('isSaving')) {
return;
}
this.set('active', !this.get('active'));
return this.save();
}
});