File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -35,7 +35,7 @@ export class SystemService {
3535 private readonly logger = new Logger ( SystemService . name ) ;
3636 constructor ( private readonly queryBus : QueryBus ) { }
3737
38- async getStats ( ) : Promise < ICommandResponse < any > > {
38+ public async getStats ( ) : Promise < ICommandResponse < any > > {
3939 try {
4040 const userStats = await this . getShortUserStats ( ) ;
4141
@@ -77,7 +77,7 @@ export class SystemService {
7777 }
7878 }
7979
80- async getBandwidthStats (
80+ public async getBandwidthStats (
8181 query : GetStatsRequestQueryDto ,
8282 ) : Promise < ICommandResponse < GetBandwidthStatsResponseModel > > {
8383 try {
@@ -110,7 +110,7 @@ export class SystemService {
110110 }
111111 }
112112
113- async getNodesStatistics ( ) : Promise < ICommandResponse < GetNodesStatisticsResponseModel > > {
113+ public async getNodesStatistics ( ) : Promise < ICommandResponse < GetNodesStatisticsResponseModel > > {
114114 try {
115115 const lastSevenDaysStats = await this . getLastSevenDaysNodesUsage ( ) ;
116116
You can’t perform that action at this time.
0 commit comments