Skip to content

author

konigle.managers.website.author

Author managers for the Konigle SDK.

This module provides managers for author resources, enabling content author management and operations.

AsyncAuthorManager

Bases: BaseAuthorManager, BaseAsyncManager

Async manager for author resources.

create(data) async

Create a new author.

update(id_, data) async

Update an existing author.

AuthorManager

Bases: BaseAuthorManager, BaseSyncManager

Manager for author resources.

create(data)

Create a new author.

update(id_, data)

Update an existing author.

BaseAuthorManager

base_path = '/admin/api/content-authors' class-attribute instance-attribute

The API base path for this resource type.

resource_class = Author class-attribute instance-attribute

The resource model class this manager handles.

resource_update_class = UpdateAuthor class-attribute instance-attribute

The model class used for updating resources.