Skip to content

Commit 56134c0

Browse files
committed
style(server): missing semicolon
1 parent f1b5b9a commit 56134c0

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Diff for: app/templates/server/api/thing/thing.socket(socketio).js

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ exports.register = function(socket) {
1313
thing.schema.post('remove', function (doc) {
1414
onRemove(socket, doc);
1515
});
16-
}
16+
};
1717

1818
function onSave(socket, doc, cb) {
1919
socket.emit('thing:save', doc);

Diff for: endpoint/templates/name.socket(socketio).js

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ exports.register = function(socket) {
1313
<%= classedName %>.schema.post('remove', function (doc) {
1414
onRemove(socket, doc);
1515
});
16-
}
16+
};
1717

1818
function onSave(socket, doc, cb) {
1919
socket.emit('<%= name %>:save', doc);

0 commit comments

Comments
 (0)