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
No related branches found
No related tags found
1 merge request!121Draft: Add 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.
Finish editing this message first!
Please register or to comment