Skip to content

Commit

Permalink
add HasCreate
Browse files Browse the repository at this point in the history
  • Loading branch information
neevnuv authored Jun 13, 2024
1 parent 888e3b2 commit 6bc8ef9
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion awxkit/awxkit/api/pages/credential_input_sources.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
from awxkit.api.resources import resources
from awxkit.api.pages import Credential
from awxkit.api.mixins import HasCreate
from . import base
from . import page


class CredentialInputSource(base.Base):
class CredentialInputSource(HasCreate, base.Base):
dependencies = [Credential]
NATURAL_KEY=('target_credential', 'input_field_name')

Expand Down

0 comments on commit 6bc8ef9

Please sign in to comment.