log when receiving a register identity request
Gitea Actions Demo / Explore-Gitea-Actions (push) Failing after 37s Details

This commit is contained in:
Ladd Hoffman 2024-04-26 19:18:12 -05:00
parent e44f43350a
commit a204ec7f6f
1 changed files with 1 additions and 0 deletions

View File

@ -112,6 +112,7 @@ const start = async () => {
const handleRegisterIdentity = async (roomId, event) => {
// const { message, signature } = event.content;
console.log('Received request to register identity');
await client.replyNotice(roomId, event, 'Received request to register identity');
};