[Glitch] Add quote notifications to WebUI

Port 081d38679f to glitch-soc

Signed-off-by: Claire <claire.github-309c@sitedethib.com>
This commit is contained in:
Claire
2025-08-04 20:12:37 +02:00
parent 3fc07508ee
commit 98685f744d
6 changed files with 81 additions and 1 deletions

View File

@@ -101,6 +101,14 @@ export default class StatusPrepend extends PureComponent {
values={{ name: link }}
/>
);
case 'quote':
return (
<FormattedMessage
id='notification.label.quote'
defaultMessage='{name} quoted your post'
values={{ name: link }}
/>
);
}
return null;
};