1
# Copyright 2011 Canonical Ltd. This software is licensed under the
2
# GNU Affero General Public License version 3 (see the file LICENSE).
4
"""Security adapters for the soyuz module."""
12
from lp.app.security import AnonymousAuthorization
13
from lp.soyuz.interfaces.processor import (
19
class ViewProcessor(AnonymousAuthorization):
20
"""Anyone can view an `IProcessor`."""
24
class ViewProcessorFamily(AnonymousAuthorization):
25
"""Anyone can view an `IProcessorFamily`."""
26
usedfor = IProcessorFamily