mirror of
https://github.com/kikobar/mastodon.git
synced 2024-11-16 20:22:18 +00:00
Add “account timeline” filter category (#12918)
* Add “account timeline” filter category Previously, no filter category applied to account timelines. * Rename “Account timelines” into “Profiles”
This commit is contained in:
parent
a8e46cf7a1
commit
43daeccccb
|
@ -115,6 +115,7 @@ class AccountTimeline extends ImmutablePureComponent {
|
||||||
shouldUpdateScroll={shouldUpdateScroll}
|
shouldUpdateScroll={shouldUpdateScroll}
|
||||||
emptyMessage={emptyMessage}
|
emptyMessage={emptyMessage}
|
||||||
bindToDocument={!multiColumn}
|
bindToDocument={!multiColumn}
|
||||||
|
timelineId='account'
|
||||||
/>
|
/>
|
||||||
</Column>
|
</Column>
|
||||||
);
|
);
|
||||||
|
|
|
@ -26,6 +26,7 @@ const toServerSideType = columnType => {
|
||||||
case 'notifications':
|
case 'notifications':
|
||||||
case 'public':
|
case 'public':
|
||||||
case 'thread':
|
case 'thread':
|
||||||
|
case 'account':
|
||||||
return columnType;
|
return columnType;
|
||||||
default:
|
default:
|
||||||
if (columnType.indexOf('list:') > -1) {
|
if (columnType.indexOf('list:') > -1) {
|
||||||
|
|
|
@ -20,6 +20,7 @@ class CustomFilter < ApplicationRecord
|
||||||
notifications
|
notifications
|
||||||
public
|
public
|
||||||
thread
|
thread
|
||||||
|
account
|
||||||
).freeze
|
).freeze
|
||||||
|
|
||||||
include Expireable
|
include Expireable
|
||||||
|
|
|
@ -733,6 +733,7 @@ en:
|
||||||
hint_html: "<strong>What are featured hashtags?</strong> They are displayed prominently on your public profile and allow people to browse your public posts specifically under those hashtags. They are a great tool for keeping track of creative works or long-term projects."
|
hint_html: "<strong>What are featured hashtags?</strong> They are displayed prominently on your public profile and allow people to browse your public posts specifically under those hashtags. They are a great tool for keeping track of creative works or long-term projects."
|
||||||
filters:
|
filters:
|
||||||
contexts:
|
contexts:
|
||||||
|
account: Profiles
|
||||||
home: Home timeline
|
home: Home timeline
|
||||||
notifications: Notifications
|
notifications: Notifications
|
||||||
public: Public timelines
|
public: Public timelines
|
||||||
|
|
Loading…
Reference in a new issue