Add "source" field to WidgetAsset message in project.proto

This commit is contained in:
2021-03-16 09:33:07 +01:00
parent 5a45893e43
commit 5d0a8490a5
2 changed files with 2 additions and 0 deletions

View File

@@ -63,6 +63,7 @@ class ProtobufProjectSerializer : ProjectSerializer {
private fun serializeWidget(widget: WidgetAsset) = ProjectProto.WidgetAsset.newBuilder()
.setUid(widget.uid)
.setSource(widget.source)
.setName(widget.name)
.build()
}