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: 6210361af26e85ec804eeff724203c37abed8988 (plain)
1
2
3
4
5
6
7
8
9
export default class DeployKeysStore {
  constructor() {
    this.keys = {};
  }

  findEnabledKey(id) {
    return this.keys.enabled_keys.find(key => key.id === id);
  }
}