mirror of
https://github.com/wassname/talk.git
synced 2026-06-28 20:08:37 +08:00
29 lines
460 B
JavaScript
29 lines
460 B
JavaScript
const Subscription = {
|
|
commentAdded(comment) {
|
|
return comment;
|
|
},
|
|
commentEdited(comment) {
|
|
return comment;
|
|
},
|
|
commentAccepted(comment) {
|
|
return comment;
|
|
},
|
|
commentRejected(comment) {
|
|
return comment;
|
|
},
|
|
commentFlagged(comment) {
|
|
return comment;
|
|
},
|
|
userBanned(user) {
|
|
return user;
|
|
},
|
|
userSuspended(user) {
|
|
return user;
|
|
},
|
|
usernameRejected(user) {
|
|
return user;
|
|
},
|
|
};
|
|
|
|
module.exports = Subscription;
|