mirror of
https://github.com/discourse/discourse.git
synced 2025-02-15 04:42:55 +08:00
20 lines
353 B
JavaScript
20 lines
353 B
JavaScript
/**
|
|
Lists of topics on a user's page.
|
|
|
|
@class UserTopicsListController
|
|
@extends Discourse.ObjectController
|
|
@namespace Discourse
|
|
@module Discourse
|
|
**/
|
|
export default Discourse.ObjectController.extend({
|
|
hideCategory: false,
|
|
showParticipants: false,
|
|
|
|
actions: {
|
|
loadMore: function() {
|
|
this.get('model').loadMore();
|
|
}
|
|
}
|
|
|
|
});
|