moding-il / bizdoc.core

Developer framework for designing organization forms
Other
2 stars 2 forks source link

Integrating chat app #9

Open zehavibarak opened 3 years ago

zehavibarak commented 3 years ago

BizDoc has an integral chat feature, which is tightly bound with other features, such as tagging of documents and notifying tagged person.

If you wish to integrate a 3rd party chat app, you can instruct BizDoc to open the app instead of the integral feature.

In your app.module:

imports: [BizDocModule.forRoot({ 
  chating: {
    app: 'chat://{0}'
  }
})]

The parameter is replaced by the user id provided by the identity manager.

Alternatively, you can provide a function instead of a URL.