Ignore:
Timestamp:
20 Apr 2011, 21:46:16 (14 years ago)
Author:
uli
Message:

Let models implement also the appropriate I...Add interfaces.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • main/waeup.sirp/trunk/src/waeup/sirp/university/faculty.py

    r5915 r5953  
    55from zope.component.interfaces import IFactory
    66from zope.interface import implementedBy
    7 from waeup.sirp.university.interfaces import IFaculty, IDepartment
     7from waeup.sirp.university.interfaces import (
     8    IFaculty, IFacultyAdd, IDepartment)
    89
    910class Faculty(grok.Container):
    1011    """A university faculty.
    1112    """
    12     grok.implements(IFaculty)
     13    grok.implements(IFaculty, IFacultyAdd)
    1314
    1415    def __init__(self,
Note: See TracChangeset for help on using the changeset viewer.