mirror of
https://code.eliotberriot.com/funkwhale/funkwhale.git
synced 2025-10-05 03:19:24 +02:00
Plugins infrastructure
This commit is contained in:
parent
9964adfbf6
commit
d4028450a9
32 changed files with 1560 additions and 47 deletions
|
@ -35,3 +35,12 @@ class CommonFactory(NoUpdateOnCreate, factory.django.DjangoModelFactory):
|
|||
|
||||
class Meta:
|
||||
model = "common.Content"
|
||||
|
||||
|
||||
@registry.register
|
||||
class PluginConfiguration(NoUpdateOnCreate, factory.django.DjangoModelFactory):
|
||||
code = "test"
|
||||
conf = {"foo": "bar"}
|
||||
|
||||
class Meta:
|
||||
model = "common.PluginConfiguration"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue