launchpad-reviewers team mailing list archive
-
launchpad-reviewers team
-
Mailing list archive
-
Message #29672
[Merge] ~jugmac00/launchpad:export-configuration-options-for-artifactory into launchpad:master
Jürgen Gmach has proposed merging ~jugmac00/launchpad:export-configuration-options-for-artifactory into launchpad:master.
Commit message:
Expose API for PPA configuration to make use of Artifactory
Requested reviews:
Launchpad code reviewers (launchpad-reviewers)
For more details, see:
https://code.launchpad.net/~jugmac00/launchpad/+git/launchpad/+merge/437207
--
Your team Launchpad code reviewers is requested to review the proposed merge of ~jugmac00/launchpad:export-configuration-options-for-artifactory into launchpad:master.
diff --git a/lib/lp/soyuz/interfaces/archive.py b/lib/lp/soyuz/interfaces/archive.py
index afbcc3c..1c0f2df 100644
--- a/lib/lp/soyuz/interfaces/archive.py
+++ b/lib/lp/soyuz/interfaces/archive.py
@@ -1000,18 +1000,22 @@ class IArchiveView(IHasBuildRecords):
"this archive."
)
- publishing_method = Choice(
- title=_("Publishing method"),
- vocabulary=ArchivePublishingMethod,
- required=True,
- readonly=False,
+ publishing_method = exported(
+ Choice(
+ title=_("Publishing method"),
+ vocabulary=ArchivePublishingMethod,
+ required=True,
+ readonly=False,
+ )
)
- repository_format = Choice(
- title=_("Repository format"),
- vocabulary=ArchiveRepositoryFormat,
- required=True,
- readonly=False,
+ repository_format = exported(
+ Choice(
+ title=_("Repository format"),
+ vocabulary=ArchiveRepositoryFormat,
+ required=True,
+ readonly=False,
+ )
)
api_publish = exported(
Follow ups