summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/blob/template_selectors/blob_ci_yaml_selector.js
blob: 5a5954e7751ebf0aebb9e30dc1e142b2299fa76a (plain)
1
2
3
4
5
6
7
8
9
/* global Api */

import TemplateSelector from './template_selector';

export default class BlobCiYamlSelector extends TemplateSelector {
  requestFile(query) {
    return Api.gitlabCiYml(query.name, (file, config) => this.setEditorContent(file, config));
  }
}