Example #1
0
 def get_blogs(self):
     return Blog.find_by_author_id(self._id)
Example #2
0
 def get_blogs(self):
     blogs = Blog.find_by_author_id(self._id)
     if blogs is not None:
         return blogs
Example #3
0
 def get_blogs(self):  # returns list of Blog objects with this authors author_id
     return Blog.find_by_author_id(self._id)
Example #4
0
 def get_blogs(self):
     return Blog.find_by_author_id(self._id)
Example #5
0
 def get_blogs(self):
     # get all the blogs that have author_id
     return Blog.find_by_author_id(self._id)
Example #6
0
 def get_blogs(self):
     blogs = Blog.find_by_author_id(self._id)
     if blogs is not None:
         return blogs