e0615fa867
📁 Changed TDrive root folder
14 lines
364 B
TypeScript
14 lines
364 B
TypeScript
import { WebsocketMetadata } from "../../utils/types";
|
|
|
|
export function getCompanyApplicationRooms(companyId: string): WebsocketMetadata[] {
|
|
return [
|
|
{
|
|
room: getCompanyApplicationRoom(companyId),
|
|
},
|
|
];
|
|
}
|
|
|
|
export function getCompanyApplicationRoom(companyApplicationId: string): string {
|
|
return `/company-application/${companyApplicationId}`;
|
|
}
|