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 @@ -196,7 +196,7 @@ const RULES_URL_PATH = '.settings/rules.json';
196196class DatabaseRulesClient {
197197
198198 private readonly dbUrl : string ;
199- private readonly httpClient : DatabaseHttpClient ;
199+ private readonly httpClient : DatabaseRulesHttpClient ;
200200
201201 constructor ( app : App , dbUrl : string ) {
202202 let parsedUrl = new URL ( dbUrl ) ;
@@ -208,7 +208,7 @@ class DatabaseRulesClient {
208208
209209 parsedUrl . pathname = path . join ( parsedUrl . pathname , RULES_URL_PATH ) ;
210210 this . dbUrl = parsedUrl . toString ( ) ;
211- this . httpClient = new DatabaseHttpClient ( app as FirebaseApp ) ;
211+ this . httpClient = new DatabaseRulesHttpClient ( app as FirebaseApp ) ;
212212 }
213213
214214 /**
@@ -316,7 +316,7 @@ class DatabaseRulesClient {
316316 }
317317}
318318
319- class DatabaseHttpClient extends AuthorizedHttpClient {
319+ class DatabaseRulesHttpClient extends AuthorizedHttpClient {
320320 protected getToken ( ) : Promise < string > {
321321 const emulatorHost = process . env . FIREBASE_DATABASE_EMULATOR_HOST ;
322322 if ( emulatorHost ) {
You can’t perform that action at this time.
0 commit comments