[Update] 修改一些bug, 增加执行task的按钮

This commit is contained in:
ibuler
2018-01-08 19:16:28 +08:00
parent dfaf029a68
commit c0829194dc
20 changed files with 138 additions and 96 deletions

View File

@@ -81,7 +81,11 @@ class AssetUser(models.Model):
@property
def public_key(self):
return signer.unsign(self._public_key)
key = signer.unsign(self._public_key)
if key:
return key
else:
return None
@property
def public_key_obj(self):