Skip to content
Snippets Groups Projects
Commit c3201d95 authored by Mart van Santen's avatar Mart van Santen
Browse files

Allow the deletion of apps

parent 950a8fa1
No related branches found
No related tags found
1 merge request!103Resolve "Allow deletion of apps"
Pipeline #38554 passed with stages
in 3 minutes and 31 seconds
......@@ -113,6 +113,10 @@ class App(db.Model):
# Delete all roles first
for role in self.roles:
db.session.delete(role)
# Delete all related oathclient entries
for auth in self.oauthclients:
db.session.delete(auth)
db.session.commit()
db.session.delete(self)
......@@ -173,6 +177,15 @@ class App(db.Model):
app_id=self.id
).all()
@property
def oauthclients(self):
"""
All oauth clients related to this app
"""
return OAuthClientApp.query.filter_by(
app_id=self.id
).all()
@property
def kustomization(self):
"""Returns the kustomization object for this app"""
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment