Skip to content
Snippets Groups Projects
Commit 7492bfa2 authored by Joscha Schmiedt's avatar Joscha Schmiedt
Browse files

FEAT: Register server side grpc service

parent 344b300e
Branches
No related tags found
1 merge request!121Add server side scripting to gRPC API
......@@ -141,6 +141,12 @@ public class GRPCServer {
ServerInterceptors.intercept(
entityTransactionService, loggingInterceptor, authInterceptor));
final ServerSideScriptingServiceImpl serverSideScriptingService =
new ServerSideScriptingServiceImpl();
services.add(
ServerInterceptors.intercept(
serverSideScriptingService, loggingInterceptor, authInterceptor));
return services;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment