UNPKG

@replyke/express

Version:

Replyke: Build interactive apps with social features like comments, votes, feeds, user lists, notifications, and more.

10 lines (9 loc) 381 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); const reputationScores = { upvote: 1, // +1 for receiving an upvote (post or comment) downvote: -1, // -1 for receiving a downvote (post or comment) createEntity: 5, // +5 for creating a new entity createComment: 2, // +2 for creating a new comment }; exports.default = reputationScores;