mirror of
https://github.com/discourse/discourse.git
synced 2025-02-11 14:57:46 +08:00
22 lines
395 B
JavaScript
22 lines
395 B
JavaScript
import ObjectController from 'discourse/controllers/object';
|
|
|
|
/**
|
|
Lists of topics on a user's page.
|
|
|
|
@class UserTopicsListController
|
|
@extends ObjectController
|
|
@namespace Discourse
|
|
@module Discourse
|
|
**/
|
|
export default ObjectController.extend({
|
|
hideCategory: false,
|
|
showParticipants: false,
|
|
|
|
actions: {
|
|
loadMore: function() {
|
|
this.get('model').loadMore();
|
|
}
|
|
}
|
|
|
|
});
|