nodebb-plugin-ns-awards-next
Version:
System for rewarding forum users. It allows admin to define set of awards that could be granted to users for special accomplishments.
42 lines (21 loc) • 1.24 kB
JavaScript
export const getApiTokens = state => state.apiTokens;
export const getAwardForGrant = state => state.awardForGrant;
export const getAwards = state => state.awards;
export const getEditAwards = state => state.editAwards;
export const getGrantReason = state => state.grantReason;
export const getGrants = state => state.grants;
export const getNewAwardDescription = state => state.newAwardDescription;
export const getNewAwardName = state => state.newAwardName;
export const getNewAwardPreview = state => state.newAwardPreview;
export const getSection = state => state.section;
export const getSections = state => state.sections;
export const getSettings = state => state.settings;
export const getUploadPath = state => state.uploadPath;
export const getUserHighlight = state => state.userHighlight;
export const getUserInspect = state => state.userInspect;
export const getUserInspectGrants = state => state.userInspectGrants;
export const getUsername = state => state.username;
export const getUsers = state => state.users;
export const getUsersForGrant = state => state.usersForGrant;
export const isCreationActive = state => state.creationActive;
export const isUserSearchFocused = state => state.userSearchFocus;