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

index.js « store « deploy_keys « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: dcd77e921cd4924dc8cb561986254e4fa9ff4818 (plain)
1
2
3
4
5
6
7
8
9
export default class DeployKeysStore {
  constructor() {
    this.keys = {};
  }

  isEnabled(id) {
    return this.keys.enabled_keys.some((key) => key.id === id);
  }
}