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: 97f3ea0d5deaabdc46fb17e463d409d22901cf1b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
export default {
  methods: {
    isConfidential(issue) {
      return !!issue.confidential;
    },

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

    hasWarning(issue) {
      return this.isConfidential(issue) || this.isLocked(issue);
    },
  },
};