onRequestUsers event not firing on @onlyoffice/document-editor-angular

I am trying to use the onRequestUsers event for the mentions feature on an Angular document-editor element:

<document-editor
        id="docEditor"
        [documentServerUrl]="DOCUMENT_SERVER"
        [config]="config()"
        [events_onDocumentReady]="onDocumentReady"
        [events_onDocumentStateChange]="onDocumentStateChange"
        [events_onRequestRename]="onRequestRename"
        [events_onMetaChange]="onMetaChange"
        [events_onRequestHistory]="onRequestHistory"
        [events_onRequestHistoryData]="onRequestHistoryData"
        [events_onRequestHistoryClose]="onRequestHistoryClose"
        [events_onRequestRestore]="onRequestRestore"
        [events_onRequestUsers]="onRequestUsers"
 >
</document-editor>

However, the onRequestUsers event is not firing. Other events such as onDocumentReady, onRequestHistoryData, onRequestHistoryClose, and onRequestRestore are working correctly.

@onlyoffice/document-editor-angular version: 3.0.0

Hello @lucasoliveira

I have to inform you that onRequestUsers event is not yet implemented in Angular component. However, it will be available in next release as the pull request was submitted:

1 Like

@Constantine
Great! Thanks for the response!

1 Like

New version was just released, please update your component.