debian-mirror-gitlab/app/assets/javascripts/repository/mixins/get_ref.js
2020-05-05 14:28:15 +05:30

22 lines
377 B
JavaScript

import getRef from '../queries/getRef.query.graphql';
export default {
apollo: {
ref: {
query: getRef,
manual: true,
result({ data, loading }) {
if (!loading) {
this.ref = data.ref;
this.escapedRef = data.escapedRef;
}
},
},
},
data() {
return {
ref: '',
escapedRef: '',
};
},
};