Refactor of modals and storing server-side
This commit is contained in:
@ -39,11 +39,7 @@ class IrisCore(pykka.ThreadingActor):
|
||||
"seed_tracks": [],
|
||||
"results": [],
|
||||
}
|
||||
data = {
|
||||
"commands": [],
|
||||
"pinned": [],
|
||||
"client_config": {},
|
||||
}
|
||||
data = {}
|
||||
ioloop = None
|
||||
|
||||
@classmethod
|
||||
@ -885,6 +881,9 @@ class IrisCore(pykka.ThreadingActor):
|
||||
# Portable configuration template for other users to import
|
||||
##
|
||||
|
||||
def get_shared_config(self, *args, **kwargs):
|
||||
return self.get_data("shared_config", *args, **kwargs)
|
||||
|
||||
def set_shared_config(self, *args, **kwargs):
|
||||
return self.set_data("shared_config", *args, **kwargs)
|
||||
|
||||
|
||||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
50
mopidy_iris/static/app.min.js
vendored
50
mopidy_iris/static/app.min.js
vendored
File diff suppressed because one or more lines are too long
@ -140,7 +140,7 @@
|
||||
|
||||
// Release details
|
||||
// These are automatically injected to built HTML
|
||||
var build = "1646809993";
|
||||
var build = "1651998720";
|
||||
var version = "3.62.0";
|
||||
|
||||
// Construct the script tag
|
||||
|
||||
Reference in New Issue
Block a user