summaryrefslogtreecommitdiff
path: root/gitlab/v4/objects/namespaces.py
blob: deee2817232f7246688569c332ada4ff10a469fc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
from gitlab.base import RESTManager, RESTObject
from gitlab.mixins import RetrieveMixin

__all__ = [
    "Namespace",
    "NamespaceManager",
]


class Namespace(RESTObject):
    pass


class NamespaceManager(RetrieveMixin, RESTManager):
    _path = "/namespaces"
    _obj_cls = Namespace
    _list_filters = ("search",)