()
| 908 | } |
| 909 | |
| 910 | generateSessionExpiresAt() { |
| 911 | if (!this.expireInactiveSessions) { |
| 912 | return undefined; |
| 913 | } |
| 914 | var now = new Date(); |
| 915 | return new Date(now.getTime() + this.sessionLength * 1000); |
| 916 | } |
| 917 | |
| 918 | unregisterRateLimiters() { |
| 919 | let i = this.rateLimits?.length; |
no outgoing calls
no test coverage detected