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
3e57be95d6dc9ef3e6818e95f946ec7ee0b63dfd to 9d74c4186ec1deb7463ae641bbcf11b2252e664f
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
9d74c4186ec1deb7463ae641bbcf11b2252e664f
Select Git revision
Loading items
Swap
Target
perxis/perxis-proto
Select target project
perxis/perxis-proto
1 result
3e57be95d6dc9ef3e6818e95f946ec7ee0b63dfd
Select Git revision
Loading items
Show changes
Only incoming changes from source
Include changes to target since source was created
Compare
Commits on Source (2)
изменено имя started_at на time
· 901aa975
ko_oler
authored
1 year ago
901aa975
revert State delete
· 9d74c418
ko_oler
authored
1 year ago
9d74c418
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
proto/spaces/spaces.proto
+4
-2
4 additions, 2 deletions
proto/spaces/spaces.proto
with
4 additions
and
2 deletions
proto/spaces/spaces.proto
View file @
9d74c418
...
@@ -12,11 +12,13 @@ message Space {
...
@@ -12,11 +12,13 @@ message Space {
string
org_id
=
2
;
string
org_id
=
2
;
string
name
=
3
;
string
name
=
3
;
string
description
=
4
;
string
description
=
4
;
StateInfo
state_info
=
5
;
// Deprecated
State
state
=
5
;
string
transfer_to_org
=
6
;
// идентификатор организации, в которую запрошен перенос пространства
string
transfer_to_org
=
6
;
// идентификатор организации, в которую запрошен перенос пространства
Config
config
=
10
;
Config
config
=
10
;
StateInfo
state_info
=
11
;
}
}
enum
State
{
enum
State
{
...
@@ -34,7 +36,7 @@ message StateInfo {
...
@@ -34,7 +36,7 @@ message StateInfo {
State
state
=
1
;
State
state
=
1
;
string
info
=
2
;
string
info
=
2
;
int32
db_version
=
3
;
int32
db_version
=
3
;
google.protobuf.Timestamp
started_at
=
4
;
google.protobuf.Timestamp
time
=
4
;
}
}
message
Config
{
message
Config
{
...
...
This diff is collapsed.
Click to expand it.