Beispiel #1
0
    def triggers_update(self, client, entryid, entry):
        """ Update an existing trigger in the database """

        return generic_update(client, DBTrigger, entryid, entry)
Beispiel #2
0
    def scores_update(self, client, entryid, entry):
        """ Update an existing score in the database """

        return generic_update(client, DBScore, entryid, entry)
Beispiel #3
0
    def teams_update(self, client, entryid, entry):
        """ Update an existing team in the database """

        return generic_update(client, DBTeam, entryid, entry)
Beispiel #4
0
    def flags_update(self, client, entryid, entry):
        """ Update an existing flag in the database """

        return generic_update(client, DBFlag, entryid, entry)