1
0
Fork 0
mirror of https://github.com/portainer/portainer.git synced 2025-07-23 15:29:42 +02:00

delete force terminating namespace (#7081)

This commit is contained in:
Prabhat Khera 2022-06-28 16:35:30 +12:00 committed by GitHub
parent 75fef397d3
commit e5e57978af
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 79 additions and 9 deletions

View file

@ -26,6 +26,14 @@ angular.module('portainer.kubernetes').factory('KubernetesNamespaces', [
transformResponse: rawResponse,
ignoreLoadingBar: true,
},
getJSON: {
method: 'GET',
headers: {
Accept: 'application/json',
},
transformResponse: rawResponse,
ignoreLoadingBar: true,
},
create: { method: 'POST' },
update: { method: 'PUT' },
delete: { method: 'DELETE' },