mirror of
https://github.com/discourse/discourse.git
synced 2025-01-19 03:32:45 +08:00
FEATURE: show posters as opposed to participants in messages
Inbox now mixes stuff that you started with stuff you replied to, removing your avatar from the avatar list causes a lot of confusion.
This commit is contained in:
parent
2a95e46d3e
commit
92724dcee1
|
@ -2,7 +2,7 @@
|
|||
export default Ember.Controller.extend({
|
||||
needs: ["application", "user"],
|
||||
hideCategory: false,
|
||||
showParticipants: false,
|
||||
showPosters: false,
|
||||
|
||||
_showFooter: function() {
|
||||
this.set("controllers.application.showFooter", !this.get("model.canLoadMore"));
|
||||
|
|
|
@ -21,7 +21,7 @@ export default (viewName, path) => {
|
|||
|
||||
this.controllerFor("user-topics-list").setProperties({
|
||||
hideCategory: true,
|
||||
showParticipants: true,
|
||||
showPosters: true,
|
||||
canBulkSelect: true,
|
||||
selected: []
|
||||
});
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
{{#if topics}}
|
||||
{{topic-list
|
||||
showParticipants=showParticipants
|
||||
showPosters=showPosters
|
||||
hideCategory=hideCategory
|
||||
topics=topics
|
||||
expandExcerpts=expandExcerpts
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
{{basic-topic-list topicList=model
|
||||
hideCategory=hideCategory
|
||||
showParticipants=showParticipants
|
||||
showPosters=showPosters
|
||||
canBulkSelect=canBulkSelect
|
||||
bulkSelectEnabled=bulkSelectEnabled
|
||||
selected=selected
|
||||
|
|
Loading…
Reference in New Issue
Block a user