-
Notifications
You must be signed in to change notification settings - Fork 266
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ef7367e
commit 4da6ccd
Showing
1 changed file
with
4 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,6 @@ | ||
/** | ||
* There's a small amount of mgmt settings that are public and will be returned when the user in unauthed. This represents that number. | ||
* | ||
* It doesn't need to be exact but should always be equal or more than the actual amount | ||
* (tests will check that the pre-authed setting count is less than this, and the post-authed count is greater than) | ||
* | ||
* There's a small amount of mgmt settings that are public and will be returned when the user in unauthed. When logged in there will be more. | ||
* | ||
* This number is used to check that after log in we get all settings by checking that unauthed setting count is lower and authed settings count is at or greater than | ||
*/ | ||
export const PARTIAL_SETTING_THRESHOLD = 12; | ||
export const PARTIAL_SETTING_THRESHOLD = 13; |