Santiago L
70042f3b5c
commit 0f26b5a8e0
Author: jorgepastorr <jorge.pastor.rr@gmail.com>
Date: Sun Jul 9 07:51:51 2023 +0000
Repo: https://gitea.pangea.org/pangea/django-orchestra.git
23 lines
678 B
Python
23 lines
678 B
Python
from django.utils.translation import gettext_lazy as _
|
|
|
|
from orchestra.contrib.orchestration import ServiceController
|
|
|
|
from . import WebAppServiceMixin
|
|
|
|
|
|
# TODO DEPRECATE
|
|
class WebalizerAppController(WebAppServiceMixin, ServiceController):
|
|
"""
|
|
Needed for cleaning up webalizer main folder when webapp deleteion withou related contents
|
|
"""
|
|
verbose_name = _("Webalizer App")
|
|
default_route_match = "webapp.type == 'webalizer'"
|
|
|
|
def save(self, webapp):
|
|
context = self.get_context(webapp)
|
|
self.create_webapp_dir(context)
|
|
|
|
def delete(self, webapp):
|
|
context = self.get_context(webapp)
|
|
self.delete_webapp_dir(context)
|