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

import TemplateSelector from './template_selector';

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