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

projects_filterable_list.js « projects « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 433c894e668a719fe2d3296c5ee80fd807218ee6 (plain)
1
2
3
4
5
6
7
import FilterableList from '~/filterable_list';

export default class ProjectsFilterableList extends FilterableList {
  getFilterEndpoint() {
    return this.getPagePath().replace('/projects?', '/projects.json?');
  }
}