app/soc/views/models/role.py
changeset 656 a76f1b443ea4
parent 654 68bafa9f719f
child 657 c781de4f6d39
equal deleted inserted replaced
655:9635cbaa2dcd 656:a76f1b443ea4
    75 
    75 
    76   def __init__(self, params=None):
    76   def __init__(self, params=None):
    77     """
    77     """
    78 
    78 
    79     Args:
    79     Args:
    80       original_params: This dictionary should be filled with the parameters
    80       params: This dictionary should be filled with the parameters
    81     """
    81     """
    82 
    82 
    83     base.View.__init__(self, params=params)
    83     super(View, self).__init__(params=params)
    84 
    84 
    85   def create(self, request, **kwargs):
    85   def create(self, request, **kwargs):
    86     """Specialized create view to enforce needing a scope_path
    86     """Specialized create view to enforce needing a scope_path
    87 
    87 
    88     This view simply gives control to the base.View.create if the
    88     This view simply gives control to the base.View.create if the