Posts by Thiago Gomes • 83 points
4 posts
-
3
votes0
answers32
viewsQ: Doubt in the MVC standard: should one service talk to another directly?
It is correct for one service to talk to another directly through dependency injection, or who should manage this communication is the controller. Ex.: I have a service(A) that needs a data obtained…
-
0
votes1
answer131
viewsA: How do I pass an authentication token using the signalR client in Flutter?
The way to pass the token is correct, but it can have its syntax improved: void buildConnection() { String hubUrl = AppSettings.API_URL + "/chat"; var httpOptions = new…
-
1
votes1
answer131
viewsQ: How do I pass an authentication token using the signalR client in Flutter?
I have a flutter mobile app that needs to connect to a signalR hub that needs a touch of authentication. In the angular client I do as follows and function correctly: this.hubConnection = new…
-
4
votes1
answer95
viewsQ: Is it possible to add properties to the css file created by the angular build?
My angular build generates a stylesheet addition in the index.html as follows: <link rel="stylesheet" href="style-1.css"> <link rel="stylesheet" href="style-2.css"> You can configure it…