view Preference.py @ 114:b0290ab29483

move the "mark as read" menu items up in the feed menu as they are used most often
author Dirk Olmes <dirk@xanthippe.ping.de>
date Sat, 28 May 2011 07:43:56 +0200
parents be990ac6e478
children
line wrap: on
line source


class Preference(object):
    @staticmethod
    def forKey(key, session):
        return session.query(Preference).filter(Preference.key == key).first()
    
    def __init__(self, key, value):
        self.key = key
        self.value = value
    
    def __repr__(self):
        return "<Preference %s = %s>" % (self.key, self.value)