Skip to content

Commit

Permalink
Dummy app fix
Browse files Browse the repository at this point in the history
  • Loading branch information
tuwukee committed Sep 18, 2024
1 parent debc6a2 commit 5003e40
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions test/support/dummy_api/config/initializers/jwt_sessions.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
JWTSessions.algorithm = "HS256"
JWTSessions.signing_key = Rails.application.secrets.secret_key_base
# frozen_string_literal: true

JWTSessions.algorithm = 'HS256'
JWTSessions.signing_key = 'super-secret-key'
JWTSessions.token_store = ENV['STORE_ADAPTER'] || 'redis'

0 comments on commit 5003e40

Please sign in to comment.