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
Merge requests
!61
Draft: Описание сервиса приложений в составе Account
Code
Review changes
Check out branch
Download
Patches
Plain diff
Open
Draft: Описание сервиса приложений в составе Account
feature/2773-ClientServiceAPI
into
master
Overview
0
Commits
1
Pipelines
0
Changes
6
Open
Pavel Antonov
requested to merge
feature/2773-ClientServiceAPI
into
master
6 months ago
Overview
0
Commits
1
Pipelines
0
Changes
6
Expand
Linked
https://git.perx.ru/perxis/perxis/-/issues/2773
0
0
Merge request reports
Compare
master
master (HEAD)
and
latest version
latest version
3491d0e0
1 commit,
6 months ago
6 files
+
365
−
0
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
6
Search (e.g. *.vue) (Ctrl+P)
proto/account/accesscontrol.proto
0 → 100644
+
27
−
0
Options
syntax
=
"proto3"
;
import
"google/protobuf/empty.proto"
;
option
go_package
=
"git.perx.ru/perxis/perxis-go/api"
;
package
perxis
;
// AccessPermission - права доступа
message
AccessPermission
{
string
id
=
1
;
// Идентификатор доступа
oneof
scope
{
string
org
=
10
;
string
space
=
11
;
}
oneof
permission
{
string
role
=
100
;
string
member
=
101
;
}
}
message
Subject
{
oneof
subject
{
string
user_id
=
1
;
string
client_id
=
2
;
}
}
\ No newline at end of file
Loading