Skip to content
Snippets Groups Projects
Commit 34ddfeac authored by ko_oler's avatar ko_oler
Browse files

Добавлен в Spaces поле-объект StateInfo

parent 78539871
No related branches found
No related tags found
1 merge request!27Добавлен в Spaces поле-объект StateInfo
......@@ -5,14 +5,14 @@ option go_package = "git.perx.ru/perxis/perxis-go/proto/spaces;spaces";
package content.spaces;
import "google/protobuf/empty.proto";
import "google/protobuf/timestamp.proto";
message Space {
string id = 1;
string org_id = 2;
string name = 3;
string description = 4;
State state = 5;
StateInfo state_info = 5;
string transfer_to_org = 6; // идентификатор организации, в которую запрошен перенос пространства
......@@ -30,6 +30,13 @@ enum State {
ERROR = 7;
}
message StateInfo {
State state = 1;
string info = 2;
int32 version = 3;
google.protobuf.Timestamp started_at = 4;
}
message Config {
repeated string features = 1;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment