15 lines
396 B
Python
15 lines
396 B
Python
# -*- coding: utf-8 -*-
|
|
#
|
|
# Iterativ GmbH
|
|
# http://www.iterativ.ch/
|
|
#
|
|
# Copyright (c) 2018 Iterativ GmbH. All rights reserved.
|
|
#
|
|
# Created on 25.09.18
|
|
# @author: Ramon Wenger <ramon.wenger@iterativ.ch>
|
|
from .contentblock import AddContentBlock, MutateContentBlock
|
|
|
|
|
|
class BookMutations(object):
|
|
mutate_content_block = MutateContentBlock.Field()
|
|
add_content_block = AddContentBlock.Field() |