Skip to content
Snippets Groups Projects

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

Merged Alex Petraky requested to merge feature/PRXS-1835-SpacesStateInfoObj into master
+ 4
2
@@ -12,11 +12,13 @@ message Space {
string org_id = 2;
string name = 3;
string description = 4;
StateInfo state_info = 5;
// Deprecated
State state = 5;
string transfer_to_org = 6; // идентификатор организации, в которую запрошен перенос пространства
Config config = 10;
StateInfo state_info = 11;
}
enum State {
@@ -34,7 +36,7 @@ message StateInfo {
State state = 1;
string info = 2;
int32 db_version = 3;
google.protobuf.Timestamp started_at = 4;
google.protobuf.Timestamp time = 4;
}
message Config {
Loading