summaryrefslogtreecommitdiff
path: root/gitlab/v4/objects/topics.py
blob: 71f66076c41b74b79484623d9797cdd2d027a9d9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
from typing import Any, cast, Union

from gitlab import types
from gitlab.base import RequiredOptional, RESTManager, RESTObject
from gitlab.mixins import CreateMixin, RetrieveMixin, SaveMixin, UpdateMixin

__all__ = [
    "Topic",
    "TopicManager",
]


class Topic(SaveMixin, RESTObject):
    pass


class TopicManager(CreateMixin, RetrieveMixin, UpdateMixin, RESTManager):
    _path = "/topics"
    _obj_cls = Topic
    _create_attrs = RequiredOptional(
        required=("name",), optional=("avatar", "description")
    )
    _update_attrs = RequiredOptional(optional=("avatar", "description", "name"))
    _types = {"avatar": types.ImageAttribute}

    def get(self, id: Union[str, int], lazy: bool = False, **kwargs: Any) -> Topic:
        return cast(Topic, super().get(id=id, lazy=lazy, **kwargs))