export async function GetDepartments()

in src/azurechat/features/common/appconfig.ts [28:35]


export async function GetDepartments() {
  const departmentsJson = await appConfigStore.getConfigurationSetting({
    key: "AzureChat:Departments"
  });

  const departments = JSON.parse(departmentsJson.value as string) as DepartmentConfig[];
  return departments;
}