app/soc/models/mentor.py
changeset 1113 78e4ea7e71f9
parent 385 6d410bf49a82
child 1307 091a21cf3627
equal deleted inserted replaced
1112:1a6eec8222e9 1113:78e4ea7e71f9
    12 # distributed under the License is distributed on an "AS IS" BASIS,
    12 # distributed under the License is distributed on an "AS IS" BASIS,
    13 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    13 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    14 # See the License for the specific language governing permissions and
    14 # See the License for the specific language governing permissions and
    15 # limitations under the License.
    15 # limitations under the License.
    16 
    16 
    17 """This module contains the Reviewer Model."""
    17 """This module contains the Organization Mentor Model."""
    18 
    18 
    19 __authors__ = [
    19 __authors__ = [
    20   '"Todd Larsen" <tlarsen@google.com>',
    20   '"Todd Larsen" <tlarsen@google.com>',
    21 ]
    21 ]
    22 
    22 
    23 
    23 
    24 import soc.models.reviewer
    24 import soc.models.role
    25 
    25 
    26 
    26 
    27 class Mentor(soc.models.reviewer.Reviewer):
    27 class Mentor(soc.models.role.Role):
    28   """Organization Mentor.
    28   """Organization Mentor.
    29   """
    29   """
    30   pass
    30   pass
    31 
    31