mirror of
https://github.com/ansible/awx.git
synced 2026-02-19 04:00:06 -03:30
adding needed url endpoint for copy functionality and the beginning of some testing that can be fleshed out more fully in later work
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
import logging
|
||||
|
||||
from awxkit.api.mixins import DSAdapter, HasCreate
|
||||
from awxkit.api.mixins import DSAdapter, HasCreate, HasCopy
|
||||
from awxkit.api.pages import (
|
||||
Credential,
|
||||
Organization,
|
||||
@@ -15,7 +15,7 @@ from . import page
|
||||
log = logging.getLogger(__name__)
|
||||
|
||||
|
||||
class ExecutionEnvironment(HasCreate, base.Base):
|
||||
class ExecutionEnvironment(HasCreate, HasCopy, base.Base):
|
||||
|
||||
dependencies = [Organization, Credential]
|
||||
NATURAL_KEY = ('name',)
|
||||
|
||||
Reference in New Issue
Block a user