CommunityEmojiEvents
CommunityEmojiEvents =
object
Properties
communityEmoji.created()
communityEmoji.created: (
evt:CommunityEmojiCreatedEvent) =>void
Parameters
| Parameter | Type |
|---|---|
evt | CommunityEmojiCreatedEvent |
Returns
void
Example
import { rootServer, CommunityEmojiEvent, CommunityEmojiCreatedEvent } from "@rootsdk/server-app";
rootServer.community.communityEmoji.on(CommunityEmojiEvent.CommunityEmojiCreated, (evt: CommunityEmojiCreatedEvent) => {
// ...
});
communityEmoji.deleted()
communityEmoji.deleted: (
evt:CommunityEmojiDeletedEvent) =>void
Parameters
| Parameter | Type |
|---|---|
evt | CommunityEmojiDeletedEvent |
Returns
void
Example
import { rootServer, CommunityEmojiEvent, CommunityEmojiDeletedEvent } from "@rootsdk/server-app";
rootServer.community.communityEmoji.on(CommunityEmojiEvent.CommunityEmojiDeleted, (evt: CommunityEmojiDeletedEvent) => {
// ...
});