Skip to content
Snippets Groups Projects

Organizations API - Delayed group deletion

Merged Zack Cuddy requested to merge 442810-organizations-groups-delayed-deletion into master
All threads resolved!
10 files
+ 96
20
Compare changes
  • Side-by-side
  • Inline
Files
10
  • af08607e
    Organizations API - Delayed group deletion · af08607e
    Zack Cuddy authored
    This change adds support to the EE Groups
    GraphQL Type to inform the Frontend
    with information regarding delayed
    group deletion.
    
    This change also sets up the data for
    the frontend in a follow up MR.
@@ -48,10 +48,10 @@ export function updateGroup(groupId, data = {}) {
return axios.put(url, data);
}
export function deleteGroup(groupId) {
export function deleteGroup(groupId, params) {
const url = buildApiUrl(GROUP_PATH).replace(':id', groupId);
return axios.delete(url);
return axios.delete(url, { params });
}
export const getGroupTransferLocations = (groupId, params = {}) => {
Loading