Skip to content

Commit f571ab7

Browse files
committed
Update group-model-common.js
Update Abstract Methods.
1 parent 33622a8 commit f571ab7

File tree

1 file changed

+11
-1
lines changed

1 file changed

+11
-1
lines changed

group-model-common.js

+11-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,17 @@ var Group = (function () {
88
// Abstract Method
99
};
1010

11-
Group.prototype.save = function() {
11+
Group.prototype.save = function(useDefault) {
12+
// Abstract Method
13+
};
14+
15+
Group.prototype.delete = function() {
16+
// Abstract Method
17+
};
18+
Group.prototype.addMember = function(contact){
19+
// Abstract Method
20+
};
21+
Group.prototype.removeMember = function(contact){
1222
// Abstract Method
1323
};
1424

0 commit comments

Comments
 (0)