##// END OF EJS Templates
merged fix for #188 into default
marcink -
r1327:603b6bcd default
parent child Browse files
Show More
@@ -2,12 +2,12 b''
2 """
2 """
3 rhodecode.model.db
3 rhodecode.model.db
4 ~~~~~~~~~~~~~~~~~~
4 ~~~~~~~~~~~~~~~~~~
5
5
6 Database Models for RhodeCode
6 Database Models for RhodeCode
7
7
8 :created_on: Apr 08, 2010
8 :created_on: Apr 08, 2010
9 :author: marcink
9 :author: marcink
10 :copyright: (C) 2009-2011 Marcin Kuzminski <marcin@python-works.com>
10 :copyright: (C) 2009-2011 Marcin Kuzminski <marcin@python-works.com>
11 :license: GPLv3, see COPYING for more details.
11 :license: GPLv3, see COPYING for more details.
12 """
12 """
13 # This program is free software: you can redistribute it and/or modify
13 # This program is free software: you can redistribute it and/or modify
@@ -80,6 +80,7 b' class User(Base):'
80
80
81 repositories = relationship('Repository')
81 repositories = relationship('Repository')
82 user_followers = relationship('UserFollowing', primaryjoin='UserFollowing.follows_user_id==User.user_id', cascade='all')
82 user_followers = relationship('UserFollowing', primaryjoin='UserFollowing.follows_user_id==User.user_id', cascade='all')
83 repo_to_perm = relationship('RepoToPerm', primaryjoin='RepoToPerm.user_id==User.user_id', cascade='all')
83
84
84 @property
85 @property
85 def full_contact(self):
86 def full_contact(self):
@@ -2014,7 +2014,7 b' padding-top:0px;'
2014
2014
2015 .action_button {
2015 .action_button {
2016 border:0;
2016 border:0;
2017 display:block;
2017 display:inline;
2018 }
2018 }
2019
2019
2020 .action_button:hover {
2020 .action_button:hover {
General Comments 0
You need to be logged in to leave comments. Login now