Allowing skill_gid in the skill manifest
parent
c3a1d74fc3
commit
1092f8f1ed
|
@ -27,6 +27,7 @@ class SkillManifest(Model):
|
|||
installed = DateTimeType()
|
||||
updated = DateTimeType()
|
||||
update = DateTimeType()
|
||||
skill_gid = StringType()
|
||||
|
||||
|
||||
class SkillJson(Model):
|
||||
|
|
|
@ -17,7 +17,8 @@ skill_manifest = {
|
|||
"installed": datetime.now().timestamp(),
|
||||
"updated": datetime.now().timestamp(),
|
||||
"installation": "installed",
|
||||
"update": 0
|
||||
"update": 0,
|
||||
"skill_gid": "fallback-wolfram-alpha|19.02",
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue