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(
_______________________________________________
Mailing list: https://launchpad.net/~launchpad-reviewers
Post to     : launchpad-reviewers@lists.launchpad.net
Unsubscribe : https://launchpad.net/~launchpad-reviewers
More help   : https://help.launchpad.net/ListHelp

Reply via email to