Method
validateAllowExpiredAuthDataToken
(allowExpiredAuthDataToken)
Source from the content-addressed store, hash-verified
| 248 | } |
| 249 | |
| 250 | static validateAllowExpiredAuthDataToken(allowExpiredAuthDataToken) { |
| 251 | if (typeof allowExpiredAuthDataToken !== 'boolean') { |
| 252 | throw 'Parse Server option allowExpiredAuthDataToken must be a boolean.'; |
| 253 | } |
| 254 | } |
| 255 | |
| 256 | static validateAllowClientClassCreation(allowClientClassCreation) { |
| 257 | if (typeof allowClientClassCreation !== 'boolean') { |
Tested by
no test coverage detected