##// END OF EJS Templates
code garden
marcink -
r1886:50e32940 beta
parent child Browse files
Show More
@@ -1048,7 +1048,6 b' class ChangesetComment(Base, BaseModel):'
1048 author = relationship('User', lazy='joined')
1048 author = relationship('User', lazy='joined')
1049 repo = relationship('Repository')
1049 repo = relationship('Repository')
1050
1050
1051
1052 @classmethod
1051 @classmethod
1053 def get_users(cls, revision):
1052 def get_users(cls, revision):
1054 """
1053 """
@@ -1065,7 +1064,7 b' class ChangesetComment(Base, BaseModel):'
1065
1064
1066 class Notification(Base, BaseModel):
1065 class Notification(Base, BaseModel):
1067 __tablename__ = 'notifications'
1066 __tablename__ = 'notifications'
1068 __table_args__ = ({'extend_existing':True})
1067 __table_args__ = ({'extend_existing': True},)
1069
1068
1070 TYPE_CHANGESET_COMMENT = u'cs_comment'
1069 TYPE_CHANGESET_COMMENT = u'cs_comment'
1071 TYPE_MESSAGE = u'message'
1070 TYPE_MESSAGE = u'message'
General Comments 0
You need to be logged in to leave comments. Login now