community: remove remaining premium wizard and admin surface

This commit is contained in:
a.tolmachev
2026-05-07 21:16:36 +00:00
parent 29f971c22d
commit ca9b86aada
15 changed files with 48 additions and 1278 deletions
-24
View File
@@ -66,34 +66,10 @@ document.addEventListener('DOMContentLoaded', function () {
}
function protocolColor(protocol) {
if (protocol === 'graphql' || protocol === 'Graphql') {
return 'var(--purple)';
}
if (protocol === 'grpc' || protocol === 'Grpc') {
return 'var(--accent)';
}
if (protocol === 'websocket' || protocol === 'Websocket') {
return 'var(--teal)';
}
if (protocol === 'soap' || protocol === 'Soap') {
return 'var(--blue)';
}
return 'var(--blue)';
}
function protocolLabel(protocol) {
if (protocol === 'graphql' || protocol === 'Graphql') {
return 'GraphQL';
}
if (protocol === 'grpc' || protocol === 'Grpc') {
return 'gRPC';
}
if (protocol === 'websocket' || protocol === 'Websocket') {
return 'WebSocket';
}
if (protocol === 'soap' || protocol === 'Soap') {
return 'SOAP';
}
return 'REST';
}