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

state.js « store « operation_settings « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c0eca58084872325e5a36ba7d2356fe7ab8486c5 (plain)
1
2
3
4
5
6
7
8
9
10
export default (initialState = {}) => ({
  operationsSettingsEndpoint: initialState.operationsSettingsEndpoint,
  helpPage: initialState.helpPage,
  externalDashboard: {
    url: initialState.externalDashboardUrl,
  },
  dashboardTimezone: {
    selected: initialState.dashboardTimezoneSetting,
  },
});