2017-06-09 08:28:44 +00:00
|
|
|
from django import forms
|
2023-10-24 16:59:02 +00:00
|
|
|
from django.utils.translation import gettext_lazy as _
|
2017-06-09 08:28:44 +00:00
|
|
|
from rest_framework import serializers
|
|
|
|
|
|
|
|
from .. import settings
|
|
|
|
from .options import SoftwareService
|
|
|
|
|
|
|
|
|
|
|
|
class NextCloudService(SoftwareService):
|
|
|
|
name = 'nextcloud'
|
|
|
|
verbose_name = "nextCloud"
|
|
|
|
icon = 'orchestra/icons/apps/nextCloud.png'
|
|
|
|
site_domain = settings.SAAS_NEXTCLOUD_DOMAIN
|