summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/import_projects/utils.js
blob: c2a2d5a607d7691a5e40dab3d6477f75134c86a4 (plain)
1
2
3
4
5
6
7
import { STATUSES } from './constants';

// Will be expanded in future
// eslint-disable-next-line import/prefer-default-export
export function isProjectImportable(project) {
  return project.importStatus === STATUSES.NONE && !project.importSource.incompatible;
}