Welcome to mirror list, hosted at ThFree Co, Russian Federation.

issuable_state.js « mixins « notes « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a0b3d81d63b05403966b0a55a458500936459ea9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
export default {
  methods: {
    isIssueConfidential(issue) {
      return !!issue.confidential;
    },

    isIssueLocked(issue) {
      return !!issue.discussion_locked;
    },

    hasIssueWarning(issue) {
      return this.isIssueConfidential(issue) || this.isIssueLocked(issue);
    },
  },
};