|
get(cls,
action_id)
Return single action identified by `action_id` |
source code
|
|
|
get_many(cls,
action_type=None,
result=None) |
source code
|
|
|
get_waiting(cls)
Return actions that aren't finished |
source code
|
|
|
get_by_ids(cls,
ids)
Return actions matching passed `ids` |
source code
|
|
|
|
|
|
|
|
|
get_chroot_builddirs(cls,
build)
Creates a dictionary of chroot builddirs for build delete action
:type build: models.build |
source code
|
|
|
get_build_delete_data(cls,
build)
Creates data needed for build delete action :type build: models.build |
source code
|
|
|
send_delete_build(cls,
build)
Schedules build delete action :type build: models.Build |
source code
|
|
|
send_delete_multiple_builds(cls,
builds)
Schedules builds delete action for builds belonging to the same
project :type build: list of models.Build |
source code
|
|
|
send_cancel_build(cls,
build)
Schedules build cancel action :type build: models.Build |
source code
|
|
|
|
|
send_create_gpg_key(cls,
copr)
:type copr: models.Copr |
source code
|
|
|
|
|
send_fork_copr(cls,
src,
dst,
builds_map)
:type src: models.Copr :type dst: models.Copr :type builds_map: dict
where keys are forked builds IDs and values are IDs from the original
builds. |
source code
|
|
|
send_build_module(cls,
copr,
module)
:type copr: models.Copr :type modulemd: str content of module yaml
file |
source code
|
|
|
send_delete_chroot(cls,
copr_chroot)
Schedules deletion of a chroot directory from project Useful to
remove outdated chroots :type build: models.CoprChroot |
source code
|
|