File tree 3 files changed +2
-2
lines changed
Client/Logistics.OfficeApp/src/app/core/services
Server/Logistics.DbMigrator
3 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ import {TruckGeolocationDto} from "@/core/models";
3
3
import { TenantService } from "./tenant.service" ;
4
4
import { BaseHubConnection } from "./base-hub-connection" ;
5
5
6
- @Injectable ( )
6
+ @Injectable ( { providedIn : "root" } )
7
7
export class LiveTrackingService extends BaseHubConnection {
8
8
constructor ( tenantService : TenantService ) {
9
9
super ( "live-tracking" , tenantService ) ;
Original file line number Diff line number Diff line change 11
11
var host = Host . CreateDefaultBuilder ( args )
12
12
. ConfigureAppConfiguration ( configuration =>
13
13
{
14
- var testDataFile = Path . Combine ( AppContext . BaseDirectory , "fakeDataset .json" ) ;
14
+ var testDataFile = Path . Combine ( AppContext . BaseDirectory , "fake-dataset .json" ) ;
15
15
configuration . AddJsonFile ( testDataFile , true ) ;
16
16
} )
17
17
. ConfigureServices ( ( ctx , services ) =>
File renamed without changes.
You can’t perform that action at this time.
0 commit comments