Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
P
perxis-proto
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
perxis
perxis-proto
Compare revisions
d8af7025ce201e23cc985d16ad8be1a4d85c397e to 59b21fcd765d2a6208f65dccdd04a63e55a0016e
Compare revisions
Changes are shown as if the
source
revision was being merged into the
target
revision.
Learn more about comparing revisions.
Source
perxis/perxis-proto
Select target project
No results found
59b21fcd765d2a6208f65dccdd04a63e55a0016e
Select Git revision
Loading items
Swap
Target
perxis/perxis-proto
Select target project
perxis/perxis-proto
1 result
d8af7025ce201e23cc985d16ad8be1a4d85c397e
Select Git revision
Loading items
Show changes
Only incoming changes from source
Include changes to target since source was created
Compare
Commits on Source (7)
Добавлен в Spaces поле-объект StateInfo
· 34ddfeac
ko_oler
authored
1 year ago
34ddfeac
- переименована переменная version на DBVersion
· 3a95d570
ko_oler
authored
1 year ago
- добавлен Deprecated к Config
3a95d570
добавлен Deprecated к Config/features
· 8aaa81ef
ko_oler
authored
1 year ago
8aaa81ef
fix name
· 3e57be95
ko_oler
authored
1 year ago
3e57be95
изменено имя started_at на time
· 901aa975
ko_oler
authored
1 year ago
901aa975
revert State delete
· 9d74c418
ko_oler
authored
1 year ago
9d74c418
feat(core): Добавлен в Spaces поле-объект StateInfo
· 59b21fcd
Pavel Antonov
authored
1 year ago
Close #PRXS-1835
59b21fcd
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
proto/spaces/spaces.proto
+11
-1
11 additions, 1 deletion
proto/spaces/spaces.proto
with
11 additions
and
1 deletion
proto/spaces/spaces.proto
View file @
59b21fcd
...
...
@@ -5,18 +5,20 @@ 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
;
// Deprecated
State
state
=
5
;
string
transfer_to_org
=
6
;
// идентификатор организации, в которую запрошен перенос пространства
Config
config
=
10
;
StateInfo
state_info
=
11
;
}
enum
State
{
...
...
@@ -30,7 +32,15 @@ enum State {
ERROR
=
7
;
}
message
StateInfo
{
State
state
=
1
;
string
info
=
2
;
int32
db_version
=
3
;
google.protobuf.Timestamp
time
=
4
;
}
message
Config
{
// Deprecated
repeated
string
features
=
1
;
}
...
...
This diff is collapsed.
Click to expand it.