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

merge_request_query_variables.js « mixins « vue_merge_request_widget « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3a121908f36259675516311fc46e25c13c63ed14 (plain)
1
2
3
4
5
6
7
8
9
10
export default {
  computed: {
    mergeRequestQueryVariables() {
      return {
        projectPath: this.mr.targetProjectFullPath,
        iid: `${this.mr.iid}`,
      };
    },
  },
};