funkwhale/api/funkwhale_api/radios/registries.py
2018-06-09 15:36:16 +02:00

10 lines
212 B
Python

import persisting_theory
class RadioRegistry(persisting_theory.Registry):
def prepare_name(self, data, name=None):
setattr(data, "radio_type", name)
return name
registry = RadioRegistry()