Add “account timeline” filter category (#12918)

* Add “account timeline” filter category

Previously, no filter category applied to account timelines.

* Rename “Account timelines” into “Profiles”
master
ThibG 4 years ago committed by Eugen Rochko
parent a8e46cf7a1
commit 43daeccccb
  1. 1
      app/javascript/mastodon/features/account_timeline/index.js
  2. 1
      app/javascript/mastodon/selectors/index.js
  3. 1
      app/models/custom_filter.rb
  4. 1
      config/locales/en.yml

@ -115,6 +115,7 @@ class AccountTimeline extends ImmutablePureComponent {
shouldUpdateScroll={shouldUpdateScroll}
emptyMessage={emptyMessage}
bindToDocument={!multiColumn}
timelineId='account'
/>
</Column>
);

@ -26,6 +26,7 @@ const toServerSideType = columnType => {
case 'notifications':
case 'public':
case 'thread':
case 'account':
return columnType;
default:
if (columnType.indexOf('list:') > -1) {

@ -20,6 +20,7 @@ class CustomFilter < ApplicationRecord
notifications
public
thread
account
).freeze
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."
filters:
contexts:
account: Profiles
home: Home timeline
notifications: Notifications
public: Public timelines

Loading…
Cancel
Save