0
palmtreefrb created
Seems that siyeza's question 8300 "how to turn it off?" has not been answered.
I also would like instructions on how to "disable" all implementations of SignalR.
5 Answer(s)
-
0
Hi @palmtreefrb It is not yet implemented. If what you want is disabling chat, you can do it with removing
Chat Feature
from tenant. That will disable chat and it's SignalR. But if you want to disable all SignalR codes, you need to implement it yourself. You can delete all codes or add settings for it then check if that setting is enabled. -
0
-
0
-
0
If your app is MVC
[YourAppName].Web.Mvc\Areas\App\Views\Layout\_Layout.cshtml 130 78:
-<script src="@(ApplicationPath)view-resources/Areas/App/Views/_Bundles/signalr.bundle.min.js" asp-append-version="true"></script>
[YourAppName].Web.Web.Mvc\Areas\App\Views\Layout\_Layout.cshtml 145 67:
-<script src="@(ApplicationPath)Common/Scripts/Chat/chat.signalr.js" asp-append-version="true"></script>
-
0
Got it, thanks...