Change pleroma config endpoint from static to api-based
This commit is contained in:
parent
9fab20c069
commit
10df6a5aa1
2 changed files with 2 additions and 2 deletions
|
@ -38,7 +38,7 @@ export function fetchPleromaConfig() {
|
||||||
return (dispatch, getState) => {
|
return (dispatch, getState) => {
|
||||||
dispatch(fetchPleromaConfigRequest());
|
dispatch(fetchPleromaConfigRequest());
|
||||||
|
|
||||||
api(getState).get('/static/config.json').then(response => {
|
api(getState).get('/api/statusnet/config.json').then(response => {
|
||||||
dispatch(fetchPleromaConfigSuccess(response.data));
|
dispatch(fetchPleromaConfigSuccess(response.data));
|
||||||
}).catch(error => {
|
}).catch(error => {
|
||||||
dispatch(fetchPleromaConfigFail(error));
|
dispatch(fetchPleromaConfigFail(error));
|
||||||
|
|
|
@ -11,7 +11,7 @@ export function custom_panel(state = initialPanel, action) {
|
||||||
case PANEL_FETCH_SUCCESS:
|
case PANEL_FETCH_SUCCESS:
|
||||||
return state.set('panel', action.panel); break;
|
return state.set('panel', action.panel); break;
|
||||||
case PLEROMA_CONFIG_FETCH_SUCCESS:
|
case PLEROMA_CONFIG_FETCH_SUCCESS:
|
||||||
return state.set('enabled', (action.config || {}).showInstanceSpecificPanel || false);
|
return state.set('enabled', (action.config || {}).site.pleromafe.showInstanceSpecificPanel || false);
|
||||||
}
|
}
|
||||||
|
|
||||||
return state;
|
return state;
|
||||||
|
|
Loading…
Reference in a new issue