aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/helpers/custom-validators/follows.ts
blob: fbef7ad8712d58a746eb2ea9671de86be91d16a8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import { exists } from './misc'
import { FollowState } from '@shared/models'

function isFollowStateValid (value: FollowState) {
  if (!exists(value)) return false

  return value === 'pending' || value === 'accepted'
}

// ---------------------------------------------------------------------------

export {
  isFollowStateValid
}