add scrobble frontend
This commit is contained in:
parent
4bc641e95a
commit
370508acc4
4 changed files with 50 additions and 0 deletions
|
@ -23,9 +23,12 @@ class SubidyExtension(ext.Extension):
|
|||
schema["password"] = config.Secret()
|
||||
schema["legacy_auth"] = config.Boolean(optional=True)
|
||||
schema["api_version"] = config.String(optional=True)
|
||||
schema["scrobble"] = config.Boolean(optional=True)
|
||||
return schema
|
||||
|
||||
def setup(self, registry):
|
||||
from .backend import SubidyBackend
|
||||
from .frontend import SubidyFrontend
|
||||
|
||||
registry.add("backend", SubidyBackend)
|
||||
registry.add("frontend", SubidyFrontend)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue