(stateDir: string)
| 41 | private readonly database: DatabaseHandle; |
| 42 | |
| 43 | constructor(stateDir: string) { |
| 44 | this.database = openDatabase(stateDir); |
| 45 | this.deleteExpiredTokens(Math.floor(Date.now() / 1000)); |
| 46 | } |
| 47 | |
| 48 | getClient(clientId: string): OAuthClientInformationFull | undefined { |
| 49 | const row = this.database.sqlite |
nothing calls this directly
no test coverage detected