Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
577d103
Started implementing the user management API
hiranya911 Jul 13, 2017
94aa617
Implementing more test cases
hiranya911 Jul 13, 2017
e9caf60
Fixing a python 3 test failure
hiranya911 Jul 13, 2017
826cab4
Combined the auth tests into one module
hiranya911 Jul 13, 2017
f86c0b4
Implemented the rest of the user management API
hiranya911 Jul 13, 2017
3be855a
Implemented more unit tests for user management API
hiranya911 Jul 13, 2017
def74cd
Updated API docs
hiranya911 Jul 13, 2017
ba3dca7
Implemented phone number auth support
hiranya911 Jul 13, 2017
37724ae
Stricter validation for arguments
hiranya911 Jul 13, 2017
15efd0a
Added more tests
hiranya911 Jul 13, 2017
8235199
Improved test coverage
hiranya911 Jul 13, 2017
c91d415
Updated user management tests
hiranya911 Jul 14, 2017
52ab376
Test cases for valid phone numbers
hiranya911 Jul 18, 2017
7242fef
Updated error message
hiranya911 Jul 21, 2017
06f3745
Updated create_user() and update_user() to accept kwargs instead of d…
hiranya911 Jul 26, 2017
e64bc09
Merge branch 'master' into hkj-user-mgt
hiranya911 Jul 26, 2017
24a4c06
Updated documentation
hiranya911 Jul 27, 2017
d2f76cf
Refactoring code by merging some redundant lines
hiranya911 Aug 1, 2017
6b1e1b4
Extract user managemnt code into a separate helper module
hiranya911 Aug 1, 2017
ad4d7b7
Using constants in test code
hiranya911 Aug 1, 2017
fcec67b
Fixing a typo
hiranya911 Aug 2, 2017
7aa00ef
Merging with master (resolved conflicts in test_db.py)
hiranya911 Aug 11, 2017
c0f8076
Merge branch 'hkj-user-mgt' of github.com:firebase/firebase-admin-pyt…
hiranya911 Aug 11, 2017
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fixing a typo
  • Loading branch information
hiranya911 committed Aug 2, 2017
commit fcec67b1abc1849b649e085c10bc4a6fec75b615
3 changes: 1 addition & 2 deletions firebase_admin/_user_mgt.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
class _Validator(object):
"""A collectoin of data validation utilities.

Method provided in this class raise ValueErrors if any validations fail. Normal returns
Methods provided in this class raise ValueErrors if any validations fail. Normal returns
signal success.
"""

Expand Down Expand Up @@ -128,7 +128,6 @@ def __init__(self, code, message, error=None):
self.detail = error



class UserManager(object):
"""Provides methods for interacting with the Google Identity Toolkit."""

Expand Down