No notifications are sent for appearing in a journal, but profile popovers etc. all work like mentions anywhere else in a topic.
13 lines
367 B
Plaintext
13 lines
367 B
Plaintext
import HledgerMention from "./hledger-mention";
|
|
|
|
const HledgerAccountPath = <template>
|
|
{{#each @segments as |segment index|}}{{#if index}}:{{/if}}{{#if
|
|
segment.username
|
|
}}<HledgerMention
|
|
@username={{segment.username}}
|
|
@text={{segment.text}}
|
|
/>{{else}}{{segment.text}}{{/if}}{{/each}}
|
|
</template>;
|
|
|
|
export default HledgerAccountPath;
|