Changeset - 49e5d4fa01e9
[Not reviewed]
beta
0 1 0
Marcin Kuzminski - 13 years ago 2013-04-09 01:14:44
marcin@python-works.com
add repr for UserToPerm
1 file changed with 3 insertions and 0 deletions:
0 comments (0 inline, 0 general)
rhodecode/model/db.py
Show inline comments
 
@@ -1569,6 +1569,9 @@ class UserToPerm(Base, BaseModel):
 
    user = relationship('User')
 
    permission = relationship('Permission', lazy='joined')
 

	
 
    def __unicode__(self):
 
        return u'<%s => %s >' % (self.user, self.permission)
 

	
 

	
 
class UserGroupRepoToPerm(Base, BaseModel):
 
    __tablename__ = 'users_group_repo_to_perm'
0 comments (0 inline, 0 general)