Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
C
canifa_note
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Vũ Hoàng Anh
canifa_note
Commits
b9444182
Commit
b9444182
authored
Dec 01, 2023
by
Steven
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix: register auth service
parent
4ddd3cae
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
0 deletions
+5
-0
v2.go
api/v2/v2.go
+5
-0
No files found.
api/v2/v2.go
View file @
b9444182
...
@@ -18,6 +18,7 @@ import (
...
@@ -18,6 +18,7 @@ import (
type
APIV2Service
struct
{
type
APIV2Service
struct
{
apiv2pb
.
UnimplementedSystemServiceServer
apiv2pb
.
UnimplementedSystemServiceServer
apiv2pb
.
UnimplementedAuthServiceServer
apiv2pb
.
UnimplementedUserServiceServer
apiv2pb
.
UnimplementedUserServiceServer
apiv2pb
.
UnimplementedMemoServiceServer
apiv2pb
.
UnimplementedMemoServiceServer
apiv2pb
.
UnimplementedResourceServiceServer
apiv2pb
.
UnimplementedResourceServiceServer
...
@@ -51,6 +52,7 @@ func NewAPIV2Service(secret string, profile *profile.Profile, store *store.Store
...
@@ -51,6 +52,7 @@ func NewAPIV2Service(secret string, profile *profile.Profile, store *store.Store
}
}
apiv2pb
.
RegisterSystemServiceServer
(
grpcServer
,
apiv2Service
)
apiv2pb
.
RegisterSystemServiceServer
(
grpcServer
,
apiv2Service
)
apiv2pb
.
RegisterAuthServiceServer
(
grpcServer
,
apiv2Service
)
apiv2pb
.
RegisterUserServiceServer
(
grpcServer
,
apiv2Service
)
apiv2pb
.
RegisterUserServiceServer
(
grpcServer
,
apiv2Service
)
apiv2pb
.
RegisterMemoServiceServer
(
grpcServer
,
apiv2Service
)
apiv2pb
.
RegisterMemoServiceServer
(
grpcServer
,
apiv2Service
)
apiv2pb
.
RegisterTagServiceServer
(
grpcServer
,
apiv2Service
)
apiv2pb
.
RegisterTagServiceServer
(
grpcServer
,
apiv2Service
)
...
@@ -84,6 +86,9 @@ func (s *APIV2Service) RegisterGateway(ctx context.Context, e *echo.Echo) error
...
@@ -84,6 +86,9 @@ func (s *APIV2Service) RegisterGateway(ctx context.Context, e *echo.Echo) error
if
err
:=
apiv2pb
.
RegisterSystemServiceHandler
(
context
.
Background
(),
gwMux
,
conn
);
err
!=
nil
{
if
err
:=
apiv2pb
.
RegisterSystemServiceHandler
(
context
.
Background
(),
gwMux
,
conn
);
err
!=
nil
{
return
err
return
err
}
}
if
err
:=
apiv2pb
.
RegisterAuthServiceHandler
(
context
.
Background
(),
gwMux
,
conn
);
err
!=
nil
{
return
err
}
if
err
:=
apiv2pb
.
RegisterUserServiceHandler
(
context
.
Background
(),
gwMux
,
conn
);
err
!=
nil
{
if
err
:=
apiv2pb
.
RegisterUserServiceHandler
(
context
.
Background
(),
gwMux
,
conn
);
err
!=
nil
{
return
err
return
err
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment