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