Feature: add deployment + deployment logs

This commit is contained in:
2015-11-25 15:13:00 +00:00
parent 9c8ed27c1b
commit e135c5d2c6
19 changed files with 416 additions and 68 deletions

View File

@@ -10,7 +10,7 @@ ProjectService = {
}, callback);
},
update: function(id, label, git_url, public_url ,commands) {
update: function(id, label, git_url, public_url ,commands, callback) {
Projects.update(
id,
{ $set: {
@@ -19,12 +19,13 @@ ProjectService = {
public_url: public_url,
commands: commands
}
}
},
callback
);
},
delete: function(id) {
Projects.remove(id);
delete: function(id, callback) {
Projects.remove(id, callback);
},
get: function(id) {