[Glitch] Move V2 Filter methods under /api/v2 prefix
Port b59ce0a60f to glitch-soc
Signed-off-by: Claire <claire.github-309c@sitedethib.com>
			
			
This commit is contained in:
		
							parent
							
								
									9db90d2ebe
								
							
						
					
					
						commit
						c31e756644
					
				
					 1 changed files with 1 additions and 1 deletions
				
			
		| 
						 | 
					@ -43,7 +43,7 @@ export const fetchFilters = () => (dispatch, getState) => {
 | 
				
			||||||
export const createFilterStatus = (params, onSuccess, onFail) => (dispatch, getState) => {
 | 
					export const createFilterStatus = (params, onSuccess, onFail) => (dispatch, getState) => {
 | 
				
			||||||
  dispatch(createFilterStatusRequest());
 | 
					  dispatch(createFilterStatusRequest());
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  api(getState).post(`/api/v1/filters/${params.filter_id}/statuses`, params).then(response => {
 | 
					  api(getState).post(`/api/v2/filters/${params.filter_id}/statuses`, params).then(response => {
 | 
				
			||||||
    dispatch(createFilterStatusSuccess(response.data));
 | 
					    dispatch(createFilterStatusSuccess(response.data));
 | 
				
			||||||
    if (onSuccess) onSuccess();
 | 
					    if (onSuccess) onSuccess();
 | 
				
			||||||
  }).catch(error => {
 | 
					  }).catch(error => {
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
		Reference in a new issue