No notifications are sent for appearing in a journal, but profile popovers etc. all work like mentions anywhere else in a topic.
12 lines
233 B
Plaintext
12 lines
233 B
Plaintext
import { userPath } from "discourse/lib/url";
|
|
|
|
const HledgerMention = <template>
|
|
<a
|
|
class="mention"
|
|
data-user-card={{@username}}
|
|
href={{userPath @username}}
|
|
>{{@text}}</a>
|
|
</template>;
|
|
|
|
export default HledgerMention;
|