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