summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/pipeline_new/utils/format_refs.js
diff options
context:
space:
mode:
Diffstat (limited to 'app/assets/javascripts/pipeline_new/utils/format_refs.js')
-rw-r--r--app/assets/javascripts/pipeline_new/utils/format_refs.js18
1 files changed, 0 insertions, 18 deletions
diff --git a/app/assets/javascripts/pipeline_new/utils/format_refs.js b/app/assets/javascripts/pipeline_new/utils/format_refs.js
deleted file mode 100644
index f0fbc5ed7b6..00000000000
--- a/app/assets/javascripts/pipeline_new/utils/format_refs.js
+++ /dev/null
@@ -1,18 +0,0 @@
-import { BRANCH_REF_TYPE, TAG_REF_TYPE } from '../constants';
-
-export default (refs, type) => {
- let fullName;
-
- return refs.map((ref) => {
- if (type === BRANCH_REF_TYPE) {
- fullName = `refs/heads/${ref}`;
- } else if (type === TAG_REF_TYPE) {
- fullName = `refs/tags/${ref}`;
- }
-
- return {
- shortName: ref,
- fullName,
- };
- });
-};