<@U01AS8LGX41> According to the task <https://gith...
# dev-frontend
a
@charles According to the task https://github.com/airbytehq/airbyte/issues/1960 It says:
Copy code
green = active and last sync was successful
grey = not active
red = active and last sync failed
but we have only next :
Copy code
ConnectionStatus:
      type: string
      description: Active means that data is flowing through the connection. Inactive means it is not. Deprecated means the connection is off and cannot be re-activated. the schema field describes the elements of the schema that will be synced.
      enum:
        - active
        - inactive
        - deprecated
How should we understand that last_sync was failed? Will we have 1 more status? is
isSyncing
field somehow responsible for that? Or we should identify it based on something else? I have changes ready on UI, but now we need to understand what field we are going to use for it. Or Maybe we need to add lastSyncStatus field?
c
good point. definitely not enough information.
just put an update on the issue for what we should do. we will need to add to the API to do the full feature and we probably can't do that this week. Let's ship the feature with just green and gray (rules explained in the issue). Once the API change is made, we will open a new issue to add red. But once we have green and gray we can call this issue complete.
does that work for you?
a
Got it. Sounds good.
👍 1