Skip to content

Commit

Permalink
Merge branch 'develop' of github.com:RocketChat/Rocket.Chat into fix/…
Browse files Browse the repository at this point in the history
…chat.postMessage

* 'develop' of github.com:RocketChat/Rocket.Chat:
  docs: Fixed typo in FEATURES.md (#30683)
  refactor(uikit): uikit interactions (#30534)
  feat: add trial flag to licenses.info endpoint (#30662)
  refactor: Small files to typescript (#30665)
  feat: Added new setting 'Hide conversation after closing' (#30591)
  • Loading branch information
gabriellsh committed Oct 19, 2023
2 parents e4ee8ce + ab0c287 commit ffc70f1
Show file tree
Hide file tree
Showing 113 changed files with 1,653 additions and 1,329 deletions.
5 changes: 5 additions & 0 deletions .changeset/thick-spoons-compete.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'@rocket.chat/meteor': minor
---

Added new Omnichannel setting 'Hide conversation after closing'
8 changes: 4 additions & 4 deletions FEATURES.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
# Features

- Self Host
- Docker
- Multiple Deployment Options (Heroku, Digital Ocean, Sandstorm, etc.)
- Docker
- Multiple Deployment Options (Heroku, Digital Ocean, Sandstorm, etc.)
- Authentication Options
- OAuth
- OAuth
- SAML
- LDAP
- CAS (1.0, 2.0 + attribute sync)
Expand All @@ -19,7 +19,7 @@
- Rich Media
- Audio Calls
- Video Conferencing
- Screensharing
- Screen Sharing
- Notifications
- Desktop and Mobile
- Use your own gateway
Expand Down
7 changes: 4 additions & 3 deletions apps/meteor/app/apps/server/bridges/uiInteraction.ts
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
import type { IUIKitInteraction } from '@rocket.chat/apps-engine/definition/uikit';
import type { IUser } from '@rocket.chat/apps-engine/definition/users';
import { UiInteractionBridge as UiIntBridge } from '@rocket.chat/apps-engine/server/bridges/UiInteractionBridge';
import { UiInteractionBridge as AppsEngineUiInteractionBridge } from '@rocket.chat/apps-engine/server/bridges/UiInteractionBridge';
import { api } from '@rocket.chat/core-services';
import type { UiKit } from '@rocket.chat/core-typings';

import type { AppServerOrchestrator } from '../../../../ee/server/apps/orchestrator';

export class UiInteractionBridge extends UiIntBridge {
export class UiInteractionBridge extends AppsEngineUiInteractionBridge {
constructor(private readonly orch: AppServerOrchestrator) {
super();
}
Expand All @@ -19,6 +20,6 @@ export class UiInteractionBridge extends UiIntBridge {
throw new Error('Invalid app provided');
}

void api.broadcast('notify.uiInteraction', user.id, interaction);
void api.broadcast('notify.uiInteraction', user.id, interaction as UiKit.ServerInteraction);
}
}

This file was deleted.

Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
import { settings } from '../../../settings/server';

export const getFederationDiscoveryMethod = () => settings.get<string>('FEDERATION_Discovery_Method');
3 changes: 0 additions & 3 deletions apps/meteor/app/federation/server/lib/getFederationDomain.js

This file was deleted.

3 changes: 3 additions & 0 deletions apps/meteor/app/federation/server/lib/getFederationDomain.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
import { settings } from '../../../settings/server';

export const getFederationDomain = () => settings.get<string>('FEDERATION_Domain').replace('@', '');
3 changes: 0 additions & 3 deletions apps/meteor/app/federation/server/lib/isFederationEnabled.js

This file was deleted.

3 changes: 3 additions & 0 deletions apps/meteor/app/federation/server/lib/isFederationEnabled.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
import { settings } from '../../../settings/server';

export const isFederationEnabled = () => settings.get<boolean>('FEDERATION_Enabled');
261 changes: 0 additions & 261 deletions apps/meteor/app/ui-message/client/ActionManager.js

This file was deleted.

Loading

0 comments on commit ffc70f1

Please sign in to comment.