diff options
author | Pascal Mugnier <pascal.mugnier@sonarsource.com> | 2018-04-10 13:47:42 +0200 |
---|---|---|
committer | SonarTech <sonartech@sonarsource.com> | 2018-04-10 20:20:54 +0200 |
commit | 50766c5a770d31733a4f5f0f29a3cbf663473d77 (patch) | |
tree | 6aa335d1afd44ba45e43e6ccc254f192ad69d4d0 /server/sonar-web/src/main/js/store/rootReducer.js | |
parent | f239ffffd3818fec2aa2d74b12875355324df73e (diff) | |
download | sonarqube-50766c5a770d31733a4f5f0f29a3cbf663473d77.tar.gz sonarqube-50766c5a770d31733a4f5f0f29a3cbf663473d77.zip |
SONAR-10133 Full-width banner to prompt restart after plugin change (#102)
Diffstat (limited to 'server/sonar-web/src/main/js/store/rootReducer.js')
-rw-r--r-- | server/sonar-web/src/main/js/store/rootReducer.js | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/server/sonar-web/src/main/js/store/rootReducer.js b/server/sonar-web/src/main/js/store/rootReducer.js index 1a8ca7d54e6..51ea1ad9971 100644 --- a/server/sonar-web/src/main/js/store/rootReducer.js +++ b/server/sonar-web/src/main/js/store/rootReducer.js @@ -82,6 +82,9 @@ export const getMarketplaceEditions = state => fromMarketplace.getEditions(state export const getMarketplaceEditionStatus = state => fromMarketplace.getEditionStatus(state.marketplace); +export const getMarketplacePendingPlugins = state => + fromMarketplace.getPendingPlugins(state.marketplace); + export const getMetrics = state => fromMetrics.getMetrics(state.metrics); export const getMetricByKey = (state, key) => fromMetrics.getMetricByKey(state.metrics, key); |