try logging when receiving a message
Gitea Actions Demo / Explore-Gitea-Actions (push) Failing after 38s Details

This commit is contained in:
Ladd Hoffman 2024-04-24 18:10:05 -05:00
parent 1f2c82f4aa
commit c8eb727bed
1 changed files with 3 additions and 0 deletions

View File

@ -245,6 +245,9 @@ function App() {
widgetApi.current = new WidgetApi();
const api = widgetApi.current;
// api.requestCapability(MatrixCapabilities.)
api.on('action:m.message', (ev) => {
console.log('action:m.message', ev);
});
api.start();
}, []);