Skip to content
Snippets Groups Projects
Unverified Commit dd4c2f77 authored by Kevin Aleman's avatar Kevin Aleman Committed by Diego Sampaio
Browse files

[FIX] Business Units endpoints not filtering by Unit type (#26713)

parent eefaf918
No related branches found
No related tags found
No related merge requests found
......@@ -51,6 +51,9 @@ export const validators = [
{
...(departmentIds && departmentIds.length > 0 && { department: { $in: departmentIds } }),
},
{
department: { $exists: false }, // No department == public queue
},
],
};
......
......@@ -57,10 +57,12 @@ export async function getStatistics(): Promise<ENTERPRISE_STATISTICS> {
// Number of business units
statsPms.push(
LivechatUnit.col.count().then((count) => {
statistics.businessUnits = count;
return true;
}),
LivechatUnit.find({ type: 'u' })
.count()
.then((count) => {
statistics.businessUnits = count;
return true;
}),
);
await Promise.all(statsPms).catch(log);
......
......@@ -30,8 +30,7 @@ export async function findUnits({
const query = { ...(text && { $or: [{ name: filter }] }) };
// TODO need to enfore type IOmnichannelBusinessUnit on LivechatUnit model, so don't need to use generic everywhere
const { cursor, totalCount } = LivechatUnit.findPaginated<IOmnichannelBusinessUnit>(query, {
const { cursor, totalCount } = LivechatUnit.findPaginatedUnits(query, {
sort: sort || { name: 1 },
skip: offset,
limit: count,
......
......@@ -13,6 +13,7 @@ const applyRestrictions = (method) =>
overwriteClassOnLicense('livechat-enterprise', LivechatRoomsRaw, {
find: applyRestrictions('find'),
update: applyRestrictions('update'),
findPaginated: applyRestrictions('findPaginated'),
remove: applyRestrictions('remove'),
updateDepartmentAncestorsById(originalFn, _id, departmentAncestors) {
const query = {
......
import type { ILivechatUnitModel } from '@rocket.chat/model-typings';
import type { IOmnichannelBusinessUnit } from '@rocket.chat/core-typings';
import type { FindPaginated, ILivechatUnitModel } from '@rocket.chat/model-typings';
import type { FindOptions, Filter, FindCursor } from 'mongodb';
import { LivechatDepartmentRaw } from '../../../../server/models/raw/LivechatDepartment';
export class LivechatUnitRaw extends LivechatDepartmentRaw implements ILivechatUnitModel {}
export class LivechatUnitRaw extends LivechatDepartmentRaw implements ILivechatUnitModel {
findPaginatedUnits(
query: Filter<IOmnichannelBusinessUnit>,
options?: FindOptions<IOmnichannelBusinessUnit>,
): FindPaginated<FindCursor<IOmnichannelBusinessUnit>> {
// @ts-expect-error - This extend from LivechatDepartment messes up with the types
return super.findPaginated({ ...query, type: 'u' }, options);
}
}
import type { IOmnichannelBusinessUnit } from '@rocket.chat/core-typings';
import type { FindOptions, Filter, FindCursor } from 'mongodb';
import type { FindPaginated } from './IBaseModel';
import type { ILivechatDepartmentModel } from './ILivechatDepartmentModel';
// eslint-disable-next-line @typescript-eslint/no-empty-interface
export interface ILivechatUnitModel extends ILivechatDepartmentModel {
//
findPaginatedUnits(
query: Filter<IOmnichannelBusinessUnit>,
options?: FindOptions<IOmnichannelBusinessUnit>,
): FindPaginated<FindCursor<IOmnichannelBusinessUnit>>;
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment