Ver código fonte

Update WorkingGroupMetadata description

Leszek Wiesner 3 anos atrás
pai
commit
ae970f2458

+ 4 - 4
metadata-protobuf/doc/index.md

@@ -222,10 +222,10 @@
 
 | Field | Type | Label | Description |
 | ----- | ---- | ----- | ----------- |
-| description | [string](#string) | optional | Full status description (md-formatted) |
-| about | [string](#string) | optional | Status about text (md-formatted) |
-| status | [string](#string) | optional | The status itself (expected to be 1-3 words) |
-| status_message | [string](#string) | optional | Short status message |
+| description | [string](#string) | optional | Group description text (md-formatted) |
+| about | [string](#string) | optional | Group about text (md-formatted) |
+| status | [string](#string) | optional | Current group status (expected to be 1-3 words) |
+| status_message | [string](#string) | optional | Short status message associated with the status |
 
 
 

+ 4 - 4
metadata-protobuf/proto/WorkingGroups.proto

@@ -31,10 +31,10 @@ message ApplicationMetadata {
 // set_status_text extrinsic messages:
 
 message WorkingGroupMetadata {
-  optional string description = 1; // Full status description (md-formatted)
-  optional string about = 2; // Status about text (md-formatted)
-  optional string status = 3; // The status itself (expected to be 1-3 words)
-  optional string status_message = 4; // Short status message
+  optional string description = 1; // Group description text (md-formatted)
+  optional string about = 2; // Group about text (md-formatted)
+  optional string status = 3; // Current group status (expected to be 1-3 words)
+  optional string status_message = 4; // Short status message associated with the status
 }
 
 message SetGroupMetadata {