Skip to content

Commit

Permalink
fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
pragatimodi committed Sep 27, 2023
1 parent 15cc422 commit 73fa547
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
6 changes: 6 additions & 0 deletions FirebaseAuth/Sources/Utilities/FIRAuthWebUtils.h
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,12 @@ typedef void (^FIRFetchAuthDomainCallback)(NSString *_Nullable authDomain,
authType:(NSString *)authType
callbackScheme:(NSString *)callbackScheme;

/** @fn extractDomain:urlString
@brief Strips url of scheme and path string to extract domain name
@param urlString URL string for domain
*/
+ (NSString *)extractDomain:(NSString *)urlString;

/** @fn fetchAuthDomainWithCompletion:completion:
@brief Fetches the auth domain associated with the Firebase Project.
@param completion The callback invoked after the auth domain has been constructed or an error
Expand Down
4 changes: 2 additions & 2 deletions FirebaseAuth/Tests/Unit/FIRAuthWebUtilsTests.m
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#import <TargetConditionals.h>

#import <XCTest/XCTest.h>
#import "FIRAuthWebUtils.h"
#import "FirebaseAuth/Sources/Utilities/FIRAuthWebUtils.h"

/** @class FIRAuthWebUtilsTests
@brief Tests for the FIRAuthWebUtils class.
Expand Down

0 comments on commit 73fa547

Please sign in to comment.