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

description_version_history.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: d1006e37a70da5d49a870358ce8ff5fe4bfee399 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Placeholder for GitLab FOSS
// Actual implementation: ee/app/assets/javascripts/notes/mixins/description_version_history.js
export default {
  computed: {
    canSeeDescriptionVersion() {},
    displayDeleteButton() {},
    shouldShowDescriptionVersion() {},
    descriptionVersionToggleIcon() {},
  },
  methods: {
    toggleDescriptionVersion() {},
    deleteDescriptionVersion() {},
  },
};