FastComments.com
Here you can edit and run the code snippet from our documentation.
Example Code Snippet "Objekat spominjanja u komentaru"
interface CommentUserMention { /** ID korisnika. Za SSO korisnike, biće prefiksiran vašim tenant ID-jem. **/ id: string /** The final @mention tag text, including the @ symbol. **/ tag: string /** The original @mention tag text, including the @ symbol. **/ rawTag: string /** What type of user was tagged. user = FastComments.com account. sso = SSOUser. **/ type: 'user'|'sso' /** If the user opts out of notifications, this will still be set to true. **/ sent: boolean }
Result