~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/bugs/doc/bugsubscription.txt

[rs=buildbot-poller] automatic merge from stable. Revisions: 14116,
        14117, 14118, 14119, 14120 included.

Show diffs side-by-side

added added

removed removed

Lines of Context:
383
383
will be automatically subscribed, and only specifically allowed existing
384
384
direct subscribers (eg bugtask pillar maintainers) will remain subscribed.
385
385
 
386
 
We current use a feature flag to control who is subscribed when a bug is made
387
 
private.
 
386
We currently use a feature flag to control who is subscribed when a bug is
 
387
made private.
388
388
 
389
389
    >>> from lp.services.features.testing import FeatureFixture
390
 
    >>> feature_flag = {'disclosure.enhanced_private_bug_subscriptions.enabled': 'on'}
 
390
    >>> feature_flag = {
 
391
    ...     'disclosure.enhanced_private_bug_subscriptions.enabled': 'on'}
391
392
    >>> flags = FeatureFixture(feature_flag)
392
393
    >>> flags.setUp()
393
394