mirror of
https://github.com/flarum/core.git
synced 2025-07-28 20:20:34 +02:00
12 lines
288 B
JavaScript
12 lines
288 B
JavaScript
import Activity from 'flarum/components/Activity';
|
|
|
|
/**
|
|
* The `JoinedActivity` component displays an activity feed item for when a user
|
|
* joined the forum.
|
|
*/
|
|
export default class JoinedActivity extends Activity {
|
|
description() {
|
|
return app.trans('core.joined_the_forum');
|
|
}
|
|
}
|