MCPcopy
hub / github.com/chartbrew/chartbrew / findAll

Method findAll

server/controllers/UserController.js:361–371  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

359 }
360
361 findAll() {
362 return db.User.findAll({
363 attributes: { exclude: ["password", "passwordResetToken"] },
364 })
365 .then((users) => {
366 return Promise.resolve(users);
367 })
368 .catch((error) => {
369 return Promise.reject(error);
370 });
371 }
372
373 findById(id) {
374 return db.User.findOne({

Callers 7

cleanupConversationsMethod · 0.45
deleteUserMethod · 0.45
getTeamInvitesByUserMethod · 0.45
getUsersByIdMethod · 0.45
areThereAnyUsersMethod · 0.45
get2faMethodsMethod · 0.45
getPinnedDashboardsMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected