#2674 [Core Feature] Finish getting user documentation into Admin
Issue created by
wild-endeavor
See
#1235 for background information.
This issue is to finish up that work.
### Motivation
### Goal
Parse docstring in task/workflow, and register a description entity in flyteadmin.
@task
def my_task(foo: int, bar: str) -> bool:
"""
:param foo: Some foo description here
:param bar: Other bar description here
return Description of return type here
...
Description Entity Table
| Name | Type |
| ---------------- | ------ |
| resource | string |
| project | string |
| domain | string |
| name | string |
| version | string |
| descriptionID | uint32 |
| Digest | []byte |
| ShortDescription | string |
| LongDescription | []byte |
| link | string |
FlyteConsole: We should be able to see the description when listing tasks/workflows
[image](https://user-images.githubusercontent.com/37936015/192830398-3ccbf790-3329-47e3-b444-3c6b9b21c33f.png)▾
flyteorg/flyte