Skip to content

Commit

Permalink
refactor: configure command to only allow cookie and memory drivers
Browse files Browse the repository at this point in the history
  • Loading branch information
thetutlage committed Oct 19, 2023
1 parent f6f2202 commit aa8faf3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion configure.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ export async function configure(command: Configure) {
*/
await codemods.defineEnvValidations({
variables: {
SESSION_DRIVER: `Env.schema.enum(['cookie', 'redis', 'file', 'memory'] as const)`,
SESSION_DRIVER: `Env.schema.enum(['cookie', 'memory'] as const)`,
},
leadingComment: 'Variables for configuring session package',
})
Expand Down

0 comments on commit aa8faf3

Please sign in to comment.