File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -118,7 +118,7 @@ def revoke_refresh_tokens(uid, app=None):
118
118
While this revokes all sessions for a specified user and disables any new ID tokens for
119
119
existing sessions from getting minted, existing ID tokens may remain active until their
120
120
natural expiration (one hour). To verify that ID tokens are revoked, use
121
- `verify_id_token(idToken, check_revoked=True)`.
121
+ `` verify_id_token(idToken, check_revoked=True)` `.
122
122
"""
123
123
user_manager = _get_auth_service (app ).user_manager
124
124
user_manager .update_user (uid , valid_since = int (time .time ()))
@@ -273,7 +273,7 @@ def update_user(uid, **kwargs):
273
273
custom_claims: A dictionary or a JSON string contining the custom claims to be set on the
274
274
user account (optional).
275
275
valid_since: An integer signifying the seconds since the epoch. This field is set by
276
- `revoke_refresh_tokens` and it is discouraged to set this field directly.
276
+ `` revoke_refresh_tokens` ` and it is discouraged to set this field directly.
277
277
278
278
Returns:
279
279
UserRecord: An updated UserRecord instance for the user.
Original file line number Diff line number Diff line change @@ -284,8 +284,8 @@ def delete(self):
284
284
def transaction (self , transaction_update ):
285
285
"""Atomically modifies the data at this location.
286
286
287
- Unlike a normal `set()`, which just overwrites the data regardless of its previous state,
288
- `transaction()` is used to modify the existing value to a new value, ensuring there are
287
+ Unlike a normal `` set()` `, which just overwrites the data regardless of its previous state,
288
+ `` transaction()` ` is used to modify the existing value to a new value, ensuring there are
289
289
no conflicts with other clients simultaneously writing to the same location.
290
290
291
291
This is accomplished by passing an update function which is used to transform the current
You can’t perform that action at this time.
0 commit comments