File size: 164 Bytes
1e92f2d
 
 
 
 
 
 
1
2
3
4
5
6
7
8
// @flow
import type { DBChannel } from 'shared/types';

export default ({ archivedAt, ...rest }: DBChannel) => {
  if (archivedAt) return true;
  return false;
};