chore: Upgrade Prettier 1.8 -> 2.0 (#1436)

This commit is contained in:
Tom Moor
2020-08-08 18:53:11 -07:00
committed by GitHub
parent 68dcb4de5f
commit e312b264a6
218 changed files with 1156 additions and 1169 deletions

View File

@ -11,7 +11,7 @@ import policy from "../policies";
const { authorize } = policy;
const router = new Router();
router.post("users.list", auth(), pagination(), async ctx => {
router.post("users.list", auth(), pagination(), async (ctx) => {
const { sort = "createdAt", query, includeSuspended = false } = ctx.body;
let direction = ctx.body.direction;
if (direction !== "ASC") direction = "DESC";
@ -48,19 +48,19 @@ router.post("users.list", auth(), pagination(), async ctx => {
ctx.body = {
pagination: ctx.state.pagination,
data: users.map(listUser =>
data: users.map((listUser) =>
presentUser(listUser, { includeDetails: user.isAdmin })
),
};
});
router.post("users.info", auth(), async ctx => {
router.post("users.info", auth(), async (ctx) => {
ctx.body = {
data: presentUser(ctx.state.user),
};
});
router.post("users.update", auth(), async ctx => {
router.post("users.update", auth(), async (ctx) => {
const { user } = ctx.state;
const { name, avatarUrl } = ctx.body;
@ -76,7 +76,7 @@ router.post("users.update", auth(), async ctx => {
// Admin specific
router.post("users.promote", auth(), async ctx => {
router.post("users.promote", auth(), async (ctx) => {
const userId = ctx.body.id;
const teamId = ctx.state.user.teamId;
ctx.assertPresent(userId, "id is required");
@ -101,7 +101,7 @@ router.post("users.promote", auth(), async ctx => {
};
});
router.post("users.demote", auth(), async ctx => {
router.post("users.demote", auth(), async (ctx) => {
const userId = ctx.body.id;
const teamId = ctx.state.user.teamId;
ctx.assertPresent(userId, "id is required");
@ -126,7 +126,7 @@ router.post("users.demote", auth(), async ctx => {
};
});
router.post("users.suspend", auth(), async ctx => {
router.post("users.suspend", auth(), async (ctx) => {
const admin = ctx.state.user;
const userId = ctx.body.id;
const teamId = ctx.state.user.teamId;
@ -152,7 +152,7 @@ router.post("users.suspend", auth(), async ctx => {
};
});
router.post("users.activate", auth(), async ctx => {
router.post("users.activate", auth(), async (ctx) => {
const admin = ctx.state.user;
const userId = ctx.body.id;
const teamId = ctx.state.user.teamId;
@ -178,7 +178,7 @@ router.post("users.activate", auth(), async ctx => {
};
});
router.post("users.invite", auth(), async ctx => {
router.post("users.invite", auth(), async (ctx) => {
const { invites } = ctx.body;
ctx.assertPresent(invites, "invites is required");
@ -190,12 +190,12 @@ router.post("users.invite", auth(), async ctx => {
ctx.body = {
data: {
sent: response.sent,
users: response.users.map(user => presentUser(user)),
users: response.users.map((user) => presentUser(user)),
},
};
});
router.post("users.delete", auth(), async ctx => {
router.post("users.delete", auth(), async (ctx) => {
const { confirmation, id } = ctx.body;
ctx.assertPresent(confirmation, "confirmation is required");