Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
P
perxis-proto
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
12
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
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
perxis
perxis-proto
Commits
13c81e75
Commit
13c81e75
authored
7 months ago
by
ko_oler
Browse files
Options
Downloads
Patches
Plain Diff
Обновлены спецификации сервисов с учетом добавления EventMiddleware
parent
a5054e6e
No related branches found
No related tags found
1 merge request
!65
Draft: Добавлена спецификация на события в системе
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
proto/spaces/spaces.proto
+40
-0
40 additions, 0 deletions
proto/spaces/spaces.proto
proto/users/users.proto
+11
-0
11 additions, 0 deletions
proto/users/users.proto
with
51 additions
and
0 deletions
proto/spaces/spaces.proto
+
40
−
0
View file @
13c81e75
...
...
@@ -124,6 +124,46 @@ message FindResponse {
int32
total
=
2
;
}
message
EventAbortTransfer
{
string
id
=
1
;
string
ord_id
=
2
;
}
message
EventCreate
{
string
id
=
1
;
string
ord_id
=
2
;
}
message
EventDelete
{
string
id
=
1
;
string
ord_id
=
2
;
}
message
EventMove
{
string
id
=
1
;
string
ord_id
=
2
;
}
message
EventTransfer
{
string
id
=
1
;
string
ord_id
=
2
;
}
message
EventUpdate
{
string
id
=
1
;
string
ord_id
=
2
;
}
message
EventUpdateConfig
{
string
id
=
1
;
string
ord_id
=
2
;
}
message
EventMigrate
{
string
id
=
1
;
string
ord_id
=
2
;
}
service
Spaces
{
rpc
Create
(
CreateRequest
)
returns
(
CreateResponse
)
{}
rpc
Get
(
GetRequest
)
returns
(
GetResponse
)
{}
...
...
This diff is collapsed.
Click to expand it.
proto/users/users.proto
+
11
−
0
View file @
13c81e75
...
...
@@ -73,6 +73,17 @@ message GetByIdentityResponse {
User
user
=
1
;
}
message
EventCreate
{
string
id
=
1
;
}
message
EventUpdate
{
string
id
=
1
;
}
message
EventDelete
{
string
id
=
1
;
}
service
Users
{
// Создание пользователя или регистрация текущего пользователя в системе, если create.id == `current`
rpc
Create
(
CreateRequest
)
returns
(
CreateResponse
)
{}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment