9 lines
168 B
JavaScript
9 lines
168 B
JavaScript
export default class DeployKeysStore {
|
|
constructor() {
|
|
this.keys = {};
|
|
}
|
|
|
|
isEnabled(id) {
|
|
return this.keys.enabled_keys.some(key => key.id === id);
|
|
}
|
|
}
|