~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/bugs/doc/security-teams.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:
283
283
affects are subscribed to it. This happens regardless of whether the feature
284
284
flag is set.
285
285
 
286
 
We current use a feature flag to control who is subscribed when a bug is made
287
 
security related.
 
286
We currently use a feature flag to control who is subscribed when a bug is
 
287
made security related.
288
288
 
289
289
    >>> from lp.services.features.testing import FeatureFixture
290
 
    >>> feature_flag = {'disclosure.enhanced_private_bug_subscriptions.enabled': 'on'}
 
290
    >>> feature_flag = {
 
291
    ...     'disclosure.enhanced_private_bug_subscriptions.enabled': 'on'}
291
292
    >>> flags = FeatureFixture(feature_flag)
292
293
    >>> flags.setUp()
293
294