~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/services/librarian/client.zcml

  • Committer: Launchpad Patch Queue Manager
  • Date: 2011-12-30 10:09:30 UTC
  • mfrom: (14606.2.8 apocalibrarian)
  • Revision ID: launchpad@pqm.canonical.com-20111230100930-kp3e0l6wakissewm
[r=wgrant][no-qa] Move canonical.librarian to
        lp.services.librarian(server).

Show diffs side-by-side

added added

removed removed

Lines of Context:
10
10
 
11
11
    <securedutility
12
12
        class=".client.LibrarianClient"
13
 
        provides=".interfaces.ILibrarianClient">
14
 
        <allow interface=".interfaces.ILibrarianClient" />
 
13
        provides=".interfaces.client.ILibrarianClient">
 
14
        <allow interface=".interfaces.client.ILibrarianClient" />
15
15
    </securedutility>
16
16
 
17
17
    <securedutility
18
18
        class=".client.RestrictedLibrarianClient"
19
 
        provides=".interfaces.IRestrictedLibrarianClient">
20
 
        <allow interface=".interfaces.IRestrictedLibrarianClient" />
 
19
        provides=".interfaces.client.IRestrictedLibrarianClient">
 
20
        <allow interface=".interfaces.client.IRestrictedLibrarianClient" />
21
21
    </securedutility>
22
22
</configure>
23
23