add docstring for AdvertisementPage
This commit is contained in:
parent
94750120c9
commit
e851a3447f
|
|
@ -101,7 +101,24 @@ class AdvertisementPageCreateView(AdvertisementBackOfficeViewMixin,
|
||||||
class AdvertisementPageUDView(AdvertisementBackOfficeViewMixin,
|
class AdvertisementPageUDView(AdvertisementBackOfficeViewMixin,
|
||||||
generics.UpdateAPIView,
|
generics.UpdateAPIView,
|
||||||
generics.DestroyAPIView):
|
generics.DestroyAPIView):
|
||||||
"""Update|Destroy advertisement page view."""
|
"""
|
||||||
|
Update/Destroy Advertisement page view.
|
||||||
|
|
||||||
|
**PUT**
|
||||||
|
```
|
||||||
|
Implement updating AdvertisementPage.
|
||||||
|
```
|
||||||
|
|
||||||
|
**PATCH**
|
||||||
|
```
|
||||||
|
Implement partial updating AdvertisementPage.
|
||||||
|
```
|
||||||
|
|
||||||
|
**DELETE**
|
||||||
|
```
|
||||||
|
Implement deleting AdvertisementPage.
|
||||||
|
```
|
||||||
|
"""
|
||||||
|
|
||||||
serializer_class = PageExtendedSerializer
|
serializer_class = PageExtendedSerializer
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user