All files / app/assets/javascripts/notes/mixins issuable_state.js

75% Statements 3/4
100% Branches 0/0
75% Functions 3/4
75% Lines 3/4

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23              1x           1x         31x        
// eslint-disable-next-line no-restricted-imports
import { mapGetters } from 'vuex';
 
export default {
  computed: {
    ...mapGetters(['getNoteableDataByProp']),
    isProjectArchived() {
      return this.getNoteableDataByProp('is_project_archived');
    },
    archivedProjectDocsPath() {
      return this.getNoteableDataByProp('archived_project_docs_path');
    },
    lockedIssueDocsPath() {
      return this.getNoteableDataByProp('locked_discussion_docs_path');
    },
  },
  methods: {
    isLocked(issue) {
      return Boolean(issue.discussion_locked);
    },
  },
};