Skip to content
Snippets Groups Projects
Verified Commit dc20b23e authored by Sébastiaan Versteeg's avatar Sébastiaan Versteeg
Browse files

Add file documentation to mailinglists

parent ae42a29f
No related branches found
No related tags found
1 merge request!1273Add file documentation to mailinglists
"""The admin interfaces registered by the mailinglists package"""
from django.contrib import admin
from django.utils.translation import ugettext_lazy as _
......
"""DRF permissions defined by the mailinglists package"""
from django.conf import settings
from rest_framework import permissions
......
"""DRF serializers defined by the mailinglists package"""
from rest_framework import serializers
from mailinglists.models import MailingList
......
"""DRF routes defined by the mailinglists package"""
from rest_framework import routers
from mailinglists.api import viewsets
......
"""DRF viewsets defined by the mailinglists package"""
from rest_framework import viewsets
from mailinglists import services
......
"""Configuration for the mailinglists package"""
from django.apps import AppConfig
from django.utils.translation import gettext_lazy as _
......
"""The models defined by the mailinglists package"""
from django.core import validators
from django.core.exceptions import ValidationError
from django.db import models
......
"""The services defined by the mailinglists package"""
from django.conf import settings
from django.utils import timezone
......
"""Tests for models in the mailinglists package"""
from django.core.exceptions import ValidationError
from django.test import TestCase
......
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