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
14 lines
370 B
Python
14 lines
370 B
Python
from django import forms
|
|
from django.utils.translation import gettext_lazy as _
|
|
from rest_framework import serializers
|
|
|
|
from .. import settings
|
|
from .options import SoftwareService
|
|
|
|
|
|
class OwnCloudService(SoftwareService):
|
|
name = 'owncloud'
|
|
verbose_name = "ownCloud"
|
|
icon = 'orchestra/icons/apps/ownCloud.png'
|
|
site_domain = settings.SAAS_OWNCLOUD_DOMAIN
|