mirror of
https://gitlab.com/crafty-controller/crafty-4.git
synced 2025-01-19 01:35:28 +01:00
Appease the linter
This commit is contained in:
parent
d3df67ba75
commit
84a24687d0
@ -54,7 +54,7 @@ photo_delete_schema = {
|
||||
"additionalProperties": False,
|
||||
"minProperties": 1,
|
||||
}
|
||||
default_photo = "login_1.jpg"
|
||||
DEFAULT_PHOTO = "login_1.jpg"
|
||||
|
||||
|
||||
class ApiCraftyConfigIndexHandler(BaseApiHandler):
|
||||
@ -222,8 +222,8 @@ class ApiCraftyCustomizeIndexHandler(BaseApiHandler):
|
||||
source_ip=self.get_remote_ip(),
|
||||
)
|
||||
self.controller.management.set_login_opacity(int(data["opacity"]))
|
||||
if data["photo"] == default_photo:
|
||||
self.controller.management.set_login_image(default_photo)
|
||||
if data["photo"] == DEFAULT_PHOTO:
|
||||
self.controller.management.set_login_image(DEFAULT_PHOTO)
|
||||
self.controller.cached_login = f"{data['photo']}"
|
||||
else:
|
||||
self.controller.management.set_login_image(f"custom/{data['photo']}")
|
||||
@ -285,7 +285,7 @@ class ApiCraftyCustomizeIndexHandler(BaseApiHandler):
|
||||
" NOT SUPPOSED TO BE ACCESSIBLE",
|
||||
},
|
||||
)
|
||||
if data["photo"] == default_photo:
|
||||
if data["photo"] == DEFAULT_PHOTO:
|
||||
return self.finish_json(
|
||||
400,
|
||||
{
|
||||
@ -307,6 +307,6 @@ class ApiCraftyCustomizeIndexHandler(BaseApiHandler):
|
||||
else:
|
||||
current_photo = split[1]
|
||||
if current_photo == data["photo"]:
|
||||
self.controller.management.set_login_image(default_photo)
|
||||
self.controller.cached_login = default_photo
|
||||
self.controller.management.set_login_image(DEFAULT_PHOTO)
|
||||
self.controller.cached_login = DEFAULT_PHOTO
|
||||
return self.finish_json(200, {"status": "ok"})
|
||||
|
Loading…
x
Reference in New Issue
Block a user