Skip to content

Commit

Permalink
🗑️ (chore): removed debug helper
Browse files Browse the repository at this point in the history
  • Loading branch information
rezk2ll committed Mar 11, 2024
2 parents 58b1e8a + 53be17a commit 801f0a3
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 59 deletions.
Expand Up @@ -386,59 +386,6 @@ export class ChannelCrudController
};
}

async listDebug(
request: FastifyRequest<{
Querystring: ChannelListQueryParameters;
Params: BaseChannelsParameters;
}>,
): Promise<ResourceListResponse<ChannelObject>> {
const context = getExecutionContext(request);
// TODO: remove when debug is done.
context.user = {
server_request: true,
id: "12d4bb30-7274-11ea-a178-0242ac120004",
email: "kferjani@linagora.com",
identity_provider_id: "5ffd789d5010fa00196f360d",
};

const list = await gr.services.channels.channels.list(
new Pagination(request.query.page_token, request.query.limit),
{ ...request.query },
context,
);

let entities = [];
if (request.query.include_users) {
entities = [];
for (const e of list.getEntities()) {
entities.push(
await gr.services.channels.channels.includeUsersInDirectChannel(e, context.user.id),
);
}
} else {
entities = list.getEntities();
}

const resources = entities.map(a => ChannelObject.mapTo(a));

await gr.services.channels.channels.completeWithStatistics(resources);

return {
...{
resources: resources,
},
...(request.query.websockets && {
websockets: gr.platformServices.realtime.sign(
getWorkspaceRooms(request.params, request.currentUser),
request.currentUser.id,
),
}),
...(list.page_token && {
next_page_token: list.page_token,
}),
};
}

async delete(
request: FastifyRequest<{ Params: ChannelParameters }>,
reply: FastifyReply,
Expand Down
6 changes: 0 additions & 6 deletions twake/backend/node/src/services/channels/web/routes.ts
Expand Up @@ -69,12 +69,6 @@ const routes: FastifyPluginCallback = (fastify: FastifyInstance, options, next)
handler: channelsController.list.bind(channelsController),
});

fastify.route({
method: "GET",
url: `${channelsUrl}debug`,
handler: channelsController.listDebug.bind(channelsController),
});

fastify.route({
method: "GET",
url: `${channelsUrl}/:id`,
Expand Down

0 comments on commit 801f0a3

Please sign in to comment.