-
Notifications
You must be signed in to change notification settings - Fork 0
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
Showing
6 changed files
with
73 additions
and
79 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
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,2 +1,2 @@ | ||
export {GraphQLHandler} from "./handlers/graphql"; | ||
export {generateGraphQLCacheKey} from "./invalidation/invalidation"; | ||
export { GraphQLHandler } from "./handlers/graphql"; | ||
export { generateGraphQLCacheKey } from "./invalidation/invalidation"; |
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
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,11 +1,7 @@ | ||
interface Context { | ||
interface Context {} | ||
|
||
} | ||
|
||
export const Hydra = async (request: Request, env: any, ctx: Context | ||
|
||
) => { | ||
return new Response("Hydra handler", { | ||
status: 200, | ||
}); | ||
} | ||
export const Hydra = async (request: Request, env: any, ctx: Context) => { | ||
return new Response("Hydra handler", { | ||
status: 200, | ||
}); | ||
}; |
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,17 +1,16 @@ | ||
export const HydraConfig = { | ||
rateLimiting: { | ||
default: { | ||
budget: 100, | ||
}, | ||
rateLimiting: { | ||
default: { | ||
budget: 100, | ||
}, | ||
publicQueries: [ | ||
{ | ||
name: "health", | ||
}, | ||
{ | ||
name: "hydraDevQuery", | ||
} | ||
], | ||
jwksUri: "https://id.authdog.com/oidc/.well-known/jwks.json", | ||
}; | ||
}, | ||
publicQueries: [ | ||
{ | ||
name: "health", | ||
}, | ||
{ | ||
name: "hydraDevQuery", | ||
}, | ||
], | ||
jwksUri: "https://id.authdog.com/oidc/.well-known/jwks.json", | ||
}; |
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