mirror of
https://github.com/discourse/discourse.git
synced 2025-04-03 05:39:41 +08:00
clean up unused code
Unused PM topic list column 'Users' is removed
This commit is contained in:
parent
a48731e359
commit
65caf04ddc
@ -11,8 +11,7 @@ export default Discourse.Route.extend(ViewingActionType, {
|
|||||||
this.controllerFor("user-activity").set("userActionType", userActionType);
|
this.controllerFor("user-activity").set("userActionType", userActionType);
|
||||||
this.controllerFor("user-topics-list").setProperties({
|
this.controllerFor("user-topics-list").setProperties({
|
||||||
model,
|
model,
|
||||||
hideCategory: false,
|
hideCategory: false
|
||||||
showParticipants: false
|
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
@ -10,8 +10,7 @@
|
|||||||
{{/if}}
|
{{/if}}
|
||||||
|
|
||||||
{{#if topics}}
|
{{#if topics}}
|
||||||
{{topic-list showParticipants=showParticipants
|
{{topic-list showPosters=showPosters
|
||||||
showPosters=showPosters
|
|
||||||
hideCategory=hideCategory
|
hideCategory=hideCategory
|
||||||
topics=topics
|
topics=topics
|
||||||
expandExcerpts=expandExcerpts
|
expandExcerpts=expandExcerpts
|
||||||
|
@ -7,7 +7,6 @@
|
|||||||
showPosters=showPosters
|
showPosters=showPosters
|
||||||
showLikes=showLikes
|
showLikes=showLikes
|
||||||
showOpLikes=showOpLikes
|
showOpLikes=showOpLikes
|
||||||
showParticipants=showParticipants
|
|
||||||
order=order
|
order=order
|
||||||
ascending=ascending
|
ascending=ascending
|
||||||
sortable=sortable
|
sortable=sortable
|
||||||
@ -35,7 +34,6 @@
|
|||||||
showTopicPostBadges=showTopicPostBadges
|
showTopicPostBadges=showTopicPostBadges
|
||||||
hideCategory=hideCategory
|
hideCategory=hideCategory
|
||||||
showPosters=showPosters
|
showPosters=showPosters
|
||||||
showParticipants=showParticipants
|
|
||||||
showLikes=showLikes
|
showLikes=showLikes
|
||||||
showOpLikes=showOpLikes
|
showOpLikes=showOpLikes
|
||||||
expandGloballyPinned=expandGloballyPinned
|
expandGloballyPinned=expandGloballyPinned
|
||||||
|
@ -44,10 +44,6 @@
|
|||||||
|
|
||||||
{{raw "list/posts-count-column" topic=topic}}
|
{{raw "list/posts-count-column" topic=topic}}
|
||||||
|
|
||||||
{{#if showParticipants}}
|
|
||||||
{{raw "list/posters-column" posters=topic.participants}}
|
|
||||||
{{/if}}
|
|
||||||
|
|
||||||
{{#if showLikes}}
|
{{#if showLikes}}
|
||||||
<td class="num likes">
|
<td class="num likes">
|
||||||
{{#if hasLikes}}
|
{{#if hasLikes}}
|
||||||
|
@ -46,13 +46,6 @@
|
|||||||
{{category-link t.category}}
|
{{category-link t.category}}
|
||||||
</div>
|
</div>
|
||||||
{{/unless}}
|
{{/unless}}
|
||||||
{{#if showParticipants}}
|
|
||||||
<div class='participants'>
|
|
||||||
{{#each participants as |p|}}
|
|
||||||
<a href="{{unbound p.user.path}}" class="{{unbound p.extras}}">{{avatar p usernamePath="user.username" imageSize="small"}}</a>
|
|
||||||
{{/each}}
|
|
||||||
</div>
|
|
||||||
{{/if}}
|
|
||||||
<div class="clearfix"></div>
|
<div class="clearfix"></div>
|
||||||
</div>
|
</div>
|
||||||
</td>
|
</td>
|
||||||
|
@ -10,9 +10,6 @@
|
|||||||
{{raw "topic-list-header-column" order='posters'}}
|
{{raw "topic-list-header-column" order='posters'}}
|
||||||
{{/if}}
|
{{/if}}
|
||||||
{{raw "topic-list-header-column" sortable=sortable number='true' order='posts' name='replies'}}
|
{{raw "topic-list-header-column" sortable=sortable number='true' order='posts' name='replies'}}
|
||||||
{{#if showParticipants}}
|
|
||||||
{{raw "topic-list-header-column" order='participants' name='users'}}
|
|
||||||
{{/if}}
|
|
||||||
{{#if showLikes}}
|
{{#if showLikes}}
|
||||||
{{raw "topic-list-header-column" sortable=sortable number='true' order='likes' name='likes'}}
|
{{raw "topic-list-header-column" sortable=sortable number='true' order='likes' name='likes'}}
|
||||||
{{/if}}
|
{{/if}}
|
||||||
|
@ -1,7 +1,6 @@
|
|||||||
{{#load-more class="paginated-topics-list" selector=".paginated-topics-list .topic-list tr" action=(action "loadMore")}}
|
{{#load-more class="paginated-topics-list" selector=".paginated-topics-list .topic-list tr" action=(action "loadMore")}}
|
||||||
{{basic-topic-list topicList=model
|
{{basic-topic-list topicList=model
|
||||||
hideCategory=hideCategory
|
hideCategory=hideCategory
|
||||||
showParticipants=showParticipants
|
|
||||||
showPosters=showPosters
|
showPosters=showPosters
|
||||||
bulkSelectEnabled=bulkSelectEnabled
|
bulkSelectEnabled=bulkSelectEnabled
|
||||||
selected=selected
|
selected=selected
|
||||||
|
Loading…
x
Reference in New Issue
Block a user