about summary refs log tree commit diff
path: root/app/javascript/flavours/glitch/utils/filters.js
blob: 97b433a991f4af34ba3fd466171caa52e18b12f7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
export const toServerSideType = columnType => {
  switch (columnType) {
  case 'home':
  case 'notifications':
  case 'public':
  case 'thread':
  case 'account':
    return columnType;
  default:
    if (columnType.indexOf('list:') > -1) {
      return 'home';
    } else {
      return 'public'; // community, account, hashtag
    }
  }
};