|
|
@@ -108,9 +108,9 @@ def home():
|
|
|
def shared():
|
|
|
|
|
|
# owned groups
|
|
|
- bgroups = Groups.query.filter_by(owner=current_user.id).all()
|
|
|
+ bgroups = Groups.query.all()
|
|
|
# owned bookmarks
|
|
|
- bmarks = Bookmark.query.filter_by(owner=current_user.id).all()
|
|
|
+ bmarks = Bookmark.query.all()
|
|
|
|
|
|
bb_dic = dict() # dict of lists
|
|
|
for bg in bgroups:
|