Return JSON for all cards, sorted by the order_by attribute
()
| 29 | } |
| 30 | |
| 31 | def all_cards(): |
| 32 | """Return JSON for all cards, sorted by the order_by attribute""" |
| 33 | return [card.json() for card in Card.query.order_by(Card.sort_order.asc()).all()] |
| 34 | |
| 35 | def create_card(text, **kwargs): |
| 36 | """Create a new card""" |